从主题中删除自动生成的div元素

时间:2016-01-14 作者:Valdrini

我有一个主题,我想从中删除自动生成的以下html内容:

<div style=\'position:fixed;left:0;right:0;bottom:0;background:#f00;text-align:center\'>Please return following links to the footer: <div class=\'smthemes\'>Designed by <a href=\'http://officielsiteici.com/\' target=\'_blank\'>http://officielsiteici.com/</a>, thanks to: <a href=\'http://galaxycoquefr.com/\' target=\'_blank\'>galaxycoquefr.com</a>, <a href=\'http://officielcoquefr.com/\' target=\'_blank\'>officielcoquefr</a> and <a href=\'http://coquesfrs5.com/\' target=\'_blank\'>r4 3ds</a></div></div>
我该怎么做?

1 个回复
SO网友:urka_mazurka

正如您正确指出的那样,自动生成的内容是由wordpress使用主题中的模板文件生成的。Wordpress将按照一个名为template hyerarchy (例如,wordpress将使用single.php显示单个贴子页面,或使用archive.php显示归档页面)。

为了促进可重用代码块的使用,您可以从该文件中调用将要合并的其他部分。用于执行此操作的两个常见函数是get_header()get_footer() 这将分别包括标题。php和页脚。php。

由于您试图修改的部分似乎是版权部分,通常位于页面的页脚,因此我首先检查页脚。php模板部分位于主题中,以查看是否存在该部分代码。

更多信息请点击此处codex

相关推荐