如何在侧边栏外的页面/帖子中嵌入Wordpress类别小部件?

时间:2012-01-24 21:27:00

标签: wordpress

而不是使用另一个小部件,我想编码方法,直接在页面或帖子的内容中包含WP“类别”小部件。 有什么想法吗?

3 个答案:

答案 0 :(得分:3)

您还可以使用名为Widgets on Pages的插件,然后将类别拖到新创建的“侧边栏”中 - 然后您只需将短代码[widgets_on_pages]放在您想要使用的位置。

答案 1 :(得分:1)

要将wordpress帖子类别添加到模板文件中,您需要使用

<?php wp_list_categories($args); ?>

默认参数是:

<?php  $args = array(
      'show_option_all'    => ,
      'orderby'            => 'name',
      'order'              => 'ASC',
      'show_last_update'   => 0,
      'style'              => 'list',
      'show_count'         => 0,
      'hide_empty'         => 1,
      'use_desc_for_title' => 1,
      'child_of'           => 0,
      'feed'               => ,
      'feed_type'          => ,
      'feed_image'         => ,
      'exclude'            => ,
      'exclude_tree'       => ,
      'include'            => ,
      'hierarchical'       => true,
      'title_li'           => __( 'Categories' ),
      'show_option_none'   => __('No categories'),
      'number'             => NULL,
      'echo'               => 1,
      'depth'              => 0,
      'current_category'   => 0,
      'pad_counts'         => 0,
      'taxonomy'           => 'category',
      'walker'             => 'Walker_Category' );
 ?>

或者您可以简单地使用它而不使用参数,在这种情况下,默认值将起作用。

 <?php wp_list_categories(); ?>

您可以阅读有关此功能的更多信息here

答案 2 :(得分:0)