我正在使用像这样的wp_list_categories:
<?php
//list terms in a given taxonomy using wp_list_categories (also useful as a widget if using a PHP Code plugin)
$taxonomy = 'news_cat';
$orderby = 'name';
$show_count = 0; // 1 for yes, 0 for no
$pad_counts = 0; // 1 for yes, 0 for no
$hierarchical = 1; // 1 for yes, 0 for no
$title = '';
$args = array(
'taxonomy' => $taxonomy,
'orderby' => $orderby,
'show_count' => $show_count,
'pad_counts' => $pad_counts,
'hierarchical' => $hierarchical,
'title_li' => $title
);
?>
<ul class="categories fl">
<?php wp_list_categories( $args ); ?>
</ul>
效果很好。它输出如下:
<ul class="categories fl">
<li class="cat-item cat-item-5">
<a href="http://hhh.wp/news_cat/cat-1" title="View all posts filed under cat 1">cat 1</a>
</li>
<li class="cat-item cat-item-6">
<a href="http://hhh.wp/news_cat/cat-2" title="View all posts filed under cat 2">cat 2</a>
</li>
<li class="cat-item cat-item-7">
<a href="http://hhh.wp/news_cat/cat-3" title="View all posts filed under cat 3">cat 3</a>
</li>
<li class="cat-item cat-item-8">
<a href="http://hhh.wp/news_cat/cat-4" title="View all posts filed under cat 4">cat 4</a>
</li>
</ul>
问题是我不想要一个绝对的路径,只是一个相对的路径......
我需要将href读作/news_cat/cat-1
提前感谢。
答案 0 :(得分:1)
我快速浏览了一下wp_list_categories api,但我不认为你可以默认从wp_list_categories获得相对路径。
这样的事情可能是一种解决方法,(未经测试)
$variable = wp_list_categories('$args');
$variable = str_replace('http://hhh.wp', '', $variable);
echo $variable;
答案 1 :(得分:0)
ob_start();
wp_list_categories( $args );
$html = ob_get_clean();
echo str_replace(get_bloginfo('wpurl'),'',$html);