我正在尝试将Wordfaire实时博客嵌入代码在我的网站上运行并遇到一些问题。我在网站上为我的实时博客订阅源创建了一个新页面,并将嵌入代码添加到wordpress中的html页面。当我测试它并尝试测试实时博客时,页面上没有任何内容。
有没有办法让它在wordpress上工作?
提前感谢任何可以提供帮助的人!
答案 0 :(得分:0)
听起来我正在使用WordPress编辑器的HTML视图来粘贴嵌入代码,对吗?
更好的方法是制作一个简单的插件,使用嵌入代码创建一个短代码,然后使用该短代码在页面上显示嵌入代码。
嵌入-短码-plugin.php
<?php
/*
Plugin Name: Plugin Name
Plugin URI: http://pluginurl.com
Description: Plugin description
Version: 1.0
Author: Author Name
Author URI: http://authorurl.com
*/
function embed_shortcode($atts,$content=null){
extract(shortcode_atts(array('optionname'=>'defaultvalue'),$atts));
// The extract() function above will allow you to do [shortcode optionname="defaultvalue"] in your pages and use $optionname to get the value below
// The extract() line is optional and can be removed
// $optionname = defaultvalue
return 'put your embed code here';
}
add_shortcode('shortcode','embed_shortcode');
// This will add the shortcode 'shortcode': [shortcode], change to whatever
?>
将它放在你的插件文件夹中,然后激活它。或者,您可以删除/ *和* /之间的内容,并将该代码放在主题的functions.php
文件中,它将运行相同的内容。