在文本中使用php代码(在文本中添加阅读更多链接)wordpress

时间:2011-11-03 20:58:09

标签: wordpress text hyperlink

我需要一种像the_permalink这样的格式,以便在文本中添加更多阅读链接

但是这是一个php而在wordpress编辑器中无效

我需要1种格式才能在word press editor

中使用
<a href=”‘.get_permalink().’” rel=”nofollow”><span>check this</span></a>

the_permalink在wordpress编辑器中无法使用 在文本中?????

我该怎么办?

我可以在文字中添加链接以阅读更多内容吗?

1 个答案:

答案 0 :(得分:0)

将它包装在<?php标记中,以便PHP预处理器可以呈现它:

<a href=”<?php echo get_permalink(); ?>” rel=”nofollow”><span>check this</span></a>

我不确定你是否需要echo,所以如果它不起作用,请删除echo并打印出来就好了。