我想在Wordpress的侧边栏中添加一个“精选页面”按钮/小部件,它会显示页面的缩略图以及页面的自定义摘录(我正在使用http://wordpress.org/extend/plugins/page-excerpt/)。
我使用自定义文本小部件或http://wordpress.org/extend/plugins/featured-page-widget/进行了工作,但它没有显示摘录,只是从页面的主要内容生成一个。
任何人都知道一个简单的方法吗?我希望非网页设计师能够更新这类内容。
答案 0 :(得分:2)
您可以通过激活此插件轻松实现此目的http://wordpress.org/extend/plugins/php-text-widget/您可以将您的PHP代码放入窗口小部件中。这意味着您还可以放置WP_QUERY,query_posts或get_posts循环,以便获取所需的页面。
激活插件转到您的小部件页面使用文本小部件并将其拖到您的小部件区域并粘贴
<?php
$the_query = new WP_Query();
$the_query->query("page_id=$page_id");
if ($the_query->have_posts()) :
while($the_query->have_posts()) : $the_query->the_post();
//show thumbnail
if(has_post_thumbnail()) :
the_post_thumbnail();
endif;
//show excerpt
the_excerpt();
endwhile;
endif;
wp_reset_postdata();
?>