使用页面标题作为术语档案的链接

时间:2013-10-11 作者:Net Shapira

我想这样做(注意第4行):

$term_link = get_term_link( $term, \'genre1\' );
if( is_wp_error( $term_link ) )
    continue;
echo \'<li><a href="\' . $term_link . \'">***<?php the_title();?>***</a></li>\';
但我不知道怎么做。

1 个回复
SO网友:Max Yudin

如果我对你的理解是正确的,那么以下就是你所需要的:

$term_link = get_term_link( $term, \'genre1\' );
// if there is no error print the link
if( !is_wp_error( $term_link ) )
    echo \'<li><a href="\' . $term_link . \'">\' . get_the_title() . \'</a></li>\';

结束

相关推荐

Copy post taxonomy?

我是Wordpress的新手,我想做的是:创建一个分类法(课程),该分类法与POST一样有效,但有区别:我需要为课程添加一些字段(如课程成本、年龄跨度、课程每周的哪一天等)。我想我可以在帖子分类中添加自定义字段,但我想将“普通帖子”与“课程”分开。我在PHP编程方面有很多经验,但Wordpress对我来说是新的。我了解分类法和挂钩的概念,并且了解WP如何处理主题、子主题、插件等。我在安装了一个名为Simple Taxonomy的插件https://github.com/herewithme/simple-