0

我在我的模板页面上使用自定义字段,我想创建一个指向多个类别 ID 的超链接。

此片段获取我的自定义帖子字段并返回类别 ID 23 和 19,或我放入自定义字段中的任何系列,即:23、9、17:

<?php $featuredpost_cat = get_field('featured_category_id'); ?>

我想做这样的事情(我不知道正确的调用和语法):

<a href="<?php wp link to $featuredpost_cat ?>"My Link Title </a>

我希望这足够清楚。

4

2 回答 2

1

按类别 ID 分类链接:

<?php $featuredpost_cat = get_field('featured_category_id'); $category_link = get_category_link( $featuredpost_cat ); ?> <a href="<?php echo esc_url( $category_link ); ?>"> My Link Title </a>

您可以在 wordpress 函数参考站点中获得更多详细信息。 http://codex.wordpress.org/Function_Reference/get_category_link

于 2012-04-21T16:42:38.010 回答
0

Try this:

<a href="http://www.yourwebiteurl/yourcategoriepage/<?=$featuredpost_cat?>">My Link Title</a>

Im just giving an general solution how you can link to the id hope this helps.

于 2012-04-21T15:25:34.987 回答