WordPress小工具是一种用于WordPress网站的可定制组件,能够呈现各种类型的内容和功能。小工具通常出现在网站的边栏或页脚,并用于展示内容相关信息,如文章列表、搜索栏、标签云等。小工具可以通过WordPress后台的外观-小工具菜单进行定制和管理。
示例代码:
function my_custom_widget() { ?>
<div>
<h2>My Custom Widget</h2>
<p>This is my custom text.</p>
</div>
<?php
}
register_widget('my_custom_widget');
function latest_posts_widget() {
$args = array(
'post_type' => 'post',
'posts_per_page' => 5
);
$latest_posts = new WP_Query($args); ?>
<h2>Latest Posts</h2>
<ul>
<?php while ($latest_posts->have_posts()): $latest_posts->the_post(); ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>
<?php }
register_widget('latest_posts_widget');