我希望我能在这方面得到一些帮助!我正在尝试在侧边栏中实现一些 PHP,以显示类别列表(作为指向类别本身的链接)。如果单击,我当然希望它转到类别页面,然后该类别中的帖子作为链接出现在其下方的列表中。
主页示例:A 类 B 类 C 类
类别 A 中的主页示例:类别 A - 帖子一 - 帖子二 - 帖子三 类别 B 类别 C
如果这是显而易见的事情,我很抱歉。我正在尝试找到自己的解决方案,但到目前为止一直无法。
再次感谢!
我写了一个小部件,其中包含类似的代码可能会让你开始创建你的小部件:http ://wp.leau.co/2010/12/01/sidebar-feed-widget-showing-tweets-stumbles-视频和更多/
只需循环上述类别
然后使用http://codex.wordpress.org/Function_Reference/is_category您可以检查您是否在类别页面上,然后使用http://codex.wordpress.org/Function_Reference/single_cat_title检查它是否是活动页面
您可以使用此代码按层次顺序显示类别和帖子列表:
<?php
/*
Template Name: Archives with Content
*/
?>
<?php get_header(); ?>
<div id="content" class="widecolumn">
<?php if (have_posts()) : while (have_posts()) : the_post();?>
<div class="post">
<h2 id="post-<?php the_ID(); ?>"><?php the_title();?></h2>
<div class="entrytext">
<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?>
</div>
</div>
<?php endwhile; endif; ?>
<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
</div>
<div id="main">
<?php //include (TEMPLATEPATH . '/searchform.php'); ?>
<h2>Archives by Month:</h2>
<ul>
<?php wp_get_archives('type=daily&limit=1&show_post_count=1'); ?>
</ul>
<h2>Archives by Subject:</h2>
<ul>
<?php wp_list_categories('orderby=name&show_count=1'); ?>
</ul>
<?php get_footer(); ?>
1.只需将上述代码复制到一个名为archieve_page.php的文件中,然后转到admin->pages->add page并将标题作为archieve page,然后在右侧角落,单击下拉模板并选择“Archieve with内容”,然后单击发布,然后在顶部单击“查看页面”以查看该页面。