-
AuthorPosts
-
August 5, 2023 at 8:24 pm #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
FWAugust 5, 2023 at 9:42 pm #1415624Nur bei Post oder auch bei Portfolio?
August 6, 2023 at 1:04 pm #1415642Hi,
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:
In the Block Editor it looks like this:
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');
This is the thread the Guenni007 shaired the function in.
Thanks Guenni007Best regards,
MikeAugust 7, 2023 at 6:56 pm #1415736Vielen 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
FWAugust 7, 2023 at 7:21 pm #1415738Hi,
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 -
AuthorPosts
- You must be logged in to reply to this topic.