Wordpress - 定义Peramlink并在functions.php中的URL中调用它

时间:2012-05-08 16:41:28

标签: php wordpress

是否可以使用以下内容在functions.php中定义WordPress永久链接:

<?php $permalink = the_permalink;?>

“the_permalink”使用内置的WordPress功能来获取博客的固定链接,然后在functions.php中进一步使用$permalink,例如,使用图片网址:<img src="'.$permalink.'/images/image1.png'"/>

我只需要将Peramlink拉入functions.php,以便在文件中进一步使用,如上例所示。 the_permalinkbloginfo('template_directory')可以很好用。

2 个答案:

答案 0 :(得分:0)

您可以在函数中传递ID ...例如yourFunction($ id),然后在实际函数中使用get_permalink($ id)。

通常,the_permalink用于要显示和格式化固定链接的情况,get_permalink允许您将其传递给变量。

http://codex.wordpress.org/Template_Tags/get_permalink

答案 1 :(得分:0)

我自己想出来了。我最终在我的functions.php文件中使用了以下链接结构

<img src="'.get_bloginfo('stylesheet_directory').'/images/map-point-medical.png"/>