WordPress使用函数wp_register_sidebar_widget添加随机文章小工具

WordPress 开发带缩略图随机文章小工具

1、建立文件random.PHP

<aside id="random" class="widget widget_recent_entries">
<h3 class="widget-title">随机推荐阅读</h3>
<ul>
<?php
	global $post;
	$postid = $post->ID;
	$args = array( 'orderby' => 'rand', 'post__not_in' => array($post->ID), 'showposts' => 15);
	$query_posts = new WP_Query();
	$query_posts->query($args);
?>
<?php while ($query_posts->have_posts()) : $query_posts->the_post(); ?>
<li><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>
</aside>

2、在functions.php添加如下代码

  1. if( function_exists( 'register_sidebar_widget' ) ) {
  2.     register_sidebar_widget('随机文章','random');   
  3. }
  4. function lt_random() { include(TEMPLATEPATH . '/random.php'); }

3、后台-外观-小工具刷新
这样的话,你可以在你的边栏拖动随机文章的小工具了。优点在于更好设计样式的管理。


发布日期:

所属分类: WordPress 函数 标签:


没有相关文章!