作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将 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/
我是一名优秀的程序员,十分优秀!