是否可以使用以下方式在functions.php中定义WordPress永久链接:
<?php $permalink = the_permalink;?>
其中“the_permalink”使用内置的 WordPress 函数来获取博客的永久链接,然后$permalink
在 functions.php 中进一步使用,例如,带有图像 URL:<img src="'.$permalink.'/images/image1.png'"/>
我只需要将 Peramlink 拉入 functions.php 以便在文件中进一步使用,就像上面的示例一样。要么 要么the_permalink
会bloginfo('template_directory')
很好用。