我正在尝试在 WordPress 侧边栏列表的子列表中获取缩略图。我不知道如何集成缩略图的代码。请帮我。
这是我的代码如下:
function wpb_list_child_pages()
{
global $post;
if(is_page() && $post->post_parent)
$childpages=wp_list_pages('sort_column=menu_order&title_li=&child_of='.$post->post_parent.'&echo=0');
else
$childpages=wp_list_pages('sort_column=menu_order&title_li=&child_of='.$post->ID.'&echo=0');
if($childpages)
$string='<ul class="list-unstyled">'.$childpages.'</ul>';
return $string;
}
add_shortcode('wpb_childpages', 'wpb_list_child_pages');
拉丁的传说
翻翻过去那场雪