Hallo,
ich würde gernen einzelne Artikel per Shortcode in Seiten einbinden, bestehend aus Überschrift, Text und Thumbnail.
Im Moment sieht meine Funktion wie folgt aus. Überschrift und Text kommen auch an, das Thumbnail leider nicht.
Kann jemand helfen?
function personen_shortcode($atts) {
$a = shortcode_atts( array('id' => ''), $atts );
$article = get_post($a['id']);
$content = $article->post_content;
$title = $article->post_title;
$thumbnail = $article->post_thumbnail;
return '<div class="person">'.$thumbnail.'<h3>'.$title.'</h3>'.'<p>'.$content.'</p>'.'</div>';
}
add_shortcode( 'personen', 'personen_shortcode' );