大家好
我在主页上有一个特色滑块,可以调用一个类别,从中获取特色内容。现在,对于每个特色滑块,我都发了一篇带有“特色”类别的帖子。现在的问题是,当前当你点击特色幻灯片时,你会被引导到其类别为“特色”的原始帖子。
<h2 class="featured-title"><a href="<?php echo esc_url($arr[$i]["permalink"]); ?>"><?php echo esc_html($arr[$i]["title"]); ?></a></h2>
现在,我想实现的是将动态链接(如上)更改为指向特定类别,并且它应该指向的类别与组成此链接的标题完全相同-(标题=h2特色标题文本)
所以动态url应该指向
http://siteurl.com/category/title in the above link...
这可能吗?
非常感谢。非常感谢。
最合适的回答,由SO网友:David Van Staden 整理而成
try this:
<h2 class="featured-title"><a href="http://siteurl.com/category/<?php echo strtolower(str_replace(" ","",$arr[$i]["title"])); ?>"><?php echo esc_html($arr[$i]["title"]); ?></a></h2>