Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1415617

    Wie kann ich das WordPress Beitragsbild in einem mit dem Avia Architekten gestalteten Post automatisch anzeigen lassen, ohne noch ein Bild-Element mit dem Image einfügen zu müssen?
    Vielen Dank im Voraus für Eure Antwort
    FW

    #1415624

    Nur bei Post oder auch bei Portfolio?

    #1415642

    Hi,
    To display the featured image for a Advanced Layout Builder post, add the image to the Featured Image in the WordPress editor sidebar, in the Classic Editor it looks like this:
    Enfold_Support_2836.jpeg
    In the Block Editor it looks like this:
    Enfold_Support_2838.jpeg
    and then you can use Guenni007’s shortcode [thumbnail] in a code block element on the page where you want the featured image to show after adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function thumbnail_in_content($atts) {
        global $post;
        return get_the_post_thumbnail($post->ID);
    }
    add_shortcode('thumbnail', 'thumbnail_in_content');

    Enfold_Support_2840.jpeg
    Enfold_Support_2843.jpeg
    This is the thread the Guenni007 shaired the function in.
    Thanks Guenni007

    Best regards,
    Mike

    #1415736

    Vielen Dank für die Anregungen u. Hilfe!
    Leider vertrug sich die Shortcode-Funktion nicht mit den bereits in der Datei vorhandenen Funktionen. Ich konnte das Problem aber nun auf anderem Wege lösen. Unter den mitgelieferten Links ist das Ergebnis zu sehen.

    Unter den beiden ersten Links 1. und 2. sind Unterseiten zu sehen, die jeweils nur die Beiträge eines bestimmten Autors zeigen (per shortcode gefiltert).
    Unter dem 3. Link ist die normale Blogseite zu sehen.

    Dazu habe ich noch folgende Fragen.:
    1. Die normale Blogseite soll ebenfalls nur einen Teaser der Beiträge zeigen (genau wie bei den o. g. Unterseiten), über den man zum vollständigen Beitrag gelangt.
    2. Beim vollständigen Beitrag soll die Zeile mit Datum und Autorname ganz oben über dem Titel stehen.
    3. Ich möchte bei den Social-Icons nur folgende Symbole integrieren: Mastodon, Instagram, WhatsApp, Facebook, X, Linkedin, Reddit, Pinterest, Mail. Wie passe ich die Symbole an?

    Besten Dank im Voraus
    FW

    #1415738

    Hi,
    This looks like a new topic, please note that we ask that each thread is specific to a single topic, your original question for this thread was about how to display the featured image on a Advanced Layout Builder post without manually adding it.

    Your first two new questions seem to be about the display of a shortcode, I see both of these pages are a shortcode in a code block element.
    Please open a new thread and explain about the shortcode you are using, is it from a plugin? Thank you four your patience.

    Best regards,
    Mike

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.