Post Thumbnail ist eine Themenfunktion, die mit Version 2.9 eingeführt wurde. Miniaturansicht ist ein Bild, das als repräsentatives Bild für Posts, Seiten oder benutzerdefinierte Posttypen ausgewählt wird.
Ich benutze WordPress 3.4.1. Ich muss das vorgestellte Bild einer Seite anzeigen. Wie kann ich die vorgestellte Bild-URL anhand einer bestimmten Seiten-ID ermitteln? Irgendeine Hilfe?
Ich kann dem RSS-Feed wie folgt ein Bild mit einem Beitrag hinzufügen: function insertThumbnailRSS($content) { global $post; if(has_post_thumbnail($post->ID)){ $content = ''.get_the_post_thumbnail($post->ID, 'thumbnail', array('alt' => get_the_title(), 'title' => get_the_title(), 'style' => 'float:right;')).''.$content; } return $content; } add_filter('the_excerpt_rss', 'insertThumbnailRSS'); add_filter('the_content_feed', 'insertThumbnailRSS'); Als ich jedoch das für den RSS-Feed generierte XML untersuchte, stellte …
Wie kann ich das Meta-Feld "Ausgewähltes Bild" entfernen? Ich habe versucht, die remove_meta_boxFunktion zu verwenden und die Box-ID anzugeben, aber es scheint nicht so zu funktionieren wie bei den anderen nativen Meta-Boxen. Hier ist der spezifische Code, den ich ausprobiert habe: add_action( 'admin_menu', 'remove_thumbnail_box' ); function remove_thumbnail_box() { remove_meta_box( 'postimagediv', …
We use cookies and other tracking technologies to improve your browsing experience on our website,
to show you personalized content and targeted ads, to analyze our website traffic,
and to understand where our visitors are coming from.
By continuing, you consent to our use of cookies and other tracking technologies and
affirm you're at least 16 years old or have consent from a parent or guardian.