我正在使用Wordpress网站,该网站将成为具有相同内容的多个网站的模型。唯一的变化将是Blogname,我们希望用
进入文本 <?php bloginfo('name'); ?>
因此,目标是在外部服务器上创建一个公共内容目录,该目录将被拉入每个WordPress站点并应用适当的样式。我不是程序员,但我尝试了几个想法,例如为每个元素设置不同的页面模板。问题是,我正在使用的代码:
<? $a = file_get_contents("http://ew2w.com/commonPages/about.html");
echo ($a);
?>
仅适用于HTML文件而不是php,而bloginfo命令不起作用。我尝试添加此功能:
// Load Content Limit
function show_file_func( $atts ) {
extract( shortcode_atts( array(
'file' => ''
), $atts ) );
if ($file!='')
return @file_get_contents($file);
}
add_shortcode( 'show_file', 'show_file_func' );
并在文件中包含短代码。我喜欢这个想法,因为它允许我在文本上方有一个不同的图像,但它也不适用于PHP,bloginfo命令或拉动样式。
任何人都可以帮助&gt;好像应该那么难