wordpress中的活动菜单状态

时间:2010-10-07 19:41:38

标签: wordpress navigation blogs

我有两个博客页面:其他一个从一个类别获取所有帖子,另一个从所有其他类别获得所有帖子。我正在使用3.0中引入的新菜单系统。

现在的问题是当用户打开时可以说在category2单个帖子页面上,但仍然在菜单中category1具有活动状态类。

在这两个类别中,单个帖子使用相同的模板(默认模板)。

1 个答案:

答案 0 :(得分:0)

那很简单,here上有一个很好的帖子,把它放在你主题的function.php文件中。

<?php function insertAds($content) { $content = $content.'<hr /><a href="http://www.wprecipes.com">Have you visited WpRecipes today?</a><hr />'; return $content; } add_filter('the_excerpt_rss', 'insertAds'); add_filter('the_content_rss', 'insertAds'); ?>