我爲我的Wordpress網站創建了一個非常簡單的插件,使用簡碼([recentposts])顯示我最近發佈的帖子的鏈接。該插件工作到目前爲止,但我很努力尋找一種方式來顯示每個帖子鏈接的<div>
標籤中調用的每個帖子的精選圖像。在Wordpress中顯示近期文章的精選圖片?
你能告訴我如何做到這一點。對於我的插件的代碼如下:
<?php
/*
Plugin Name: Blog Display Blocks
Description: Plugin to display blog posts in block with shortcode
Author: Chris Brosnan
*/
function RecentPosts() {
$recent_posts = wp_get_recent_posts(6);
echo '<div class="blog-contain">';
foreach($recent_posts as $recent){
echo '<div class="third-box"><a href="' . get_permalink($recent["ID"]) . '">' . $recent["post_title"].'</a> </div> ';
}
};
echo '</div>';
add_shortcode('recentposts', 'RecentPosts');
register_activation_hook(__FILE__, array('Blogdisplay', 'plugin_activation'));
register_deactivation_hook(__FILE__, array('Blogdisplay', 'plugin_deactivation'));
?>
我需要爲了展示特色圖片旁邊的相應鏈接,每個崗位被稱爲辦?