有没有办法使用 PHP 在页面中查找一些 HTML,并将该 HTML 替换为其他 HTML?我希望此函数位于单独的 functions.php 文件中,并查看页面加载中的每个页面以查找需要替换的 HTML(除非这不如其他方法有效)。谢谢!
问问题
12816 次
1 回答
3
//function to add to your function definitions.
function print_processed_html($string)
{
$search = Array("--", "*", "\*", "^", "\^");
$replace = Array("<\hr>", "<b>", "<\b>", "<sup>", "<\sup>");
$processed_string = str_replace($search, $replace , $string);
echo $processed_string;
}
// outputing the string to the page.
<?php
$the_content = get_the_content();
print_processed_html($the_content);
?>
还可以考虑阅读此http://codex.wordpress.org/Function_Reference/the_content以获取有关使用该the_content()
功能的一些提示
于 2013-02-14T21:28:49.117 回答