记录日常点点滴滴,欢迎来到我的小站。

0%

WordPress 简单在使用模板中添加自定义小工具的办法

例如添加 热评文章 的小工具

hot.php

1
2
3
4
<?php $popular = new WP_Query('orderby=comment_count&posts_per_page=10'); ?>   
<?php while ($popular->have_posts()) : $popular->the_post(); ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>

在使用中的模板中找到functions.php
在里面追加以下代码

1
2
3
4
5
if( function_exists( 'register_sidebar_widget' ) ) {   
register_sidebar_widget('热评文章','mb_hot');
//有多个就再添加上面这句,把mb_hot修改对应的函数名
}
function mb_hot() { include(TEMPLATEPATH . '/hot.php'); }

然后再管理后台的小工具内,找到热评文章,将其拖到想要显示的位置即可。