gpt4 book ai didi

javascript - 如何在 WordPress 中向小部件添加永久链接?

转载 作者:行者123 更新时间:2023-12-03 07:39:35 26 4
gpt4 key购买 nike

我正在尝试将 Outbrain 小部件添加到我的 Wordpress 博客,代码是:

<div class="OUTBRAIN" data-src="DROP_PERMALINK_HERE" data-widget-id="XX_1" data-ob-template=“NameGoesHere”></div> 
<script type="text/javascript" async="async" src="http://widgets.outbrain.com/outbrain.js"></script>

问题是,如果我将其添加到 single.php 中,我可以使用 <?php the_permalink(); ?> 轻松完成此操作代替DROP_PERMALINK_HERE 。但我想将该小部件添加为 Wordpress 小部件,并且 Wordpress 中的文本小部件仅允许 HTML,而 PHP 不会在那里运行。那我该怎么办?

通过Javascript获取页面的URL?或者,还有更好的方法?

请指导。

最佳答案

If you would like to run PHP code in wordpress text widget then you have to paste below code in you active theme's functins.php file.

function php_execute_widget($html){
if(strpos($html,"<"."?php")!==false){
ob_start(); eval("?".">".$html);
$html=ob_get_contents();
ob_end_clean();
}
return $html;
}
add_filter('widget_text','php_execute_widget',100);

关于javascript - 如何在 WordPress 中向小部件添加永久链接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35464726/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com