我很少在WordPress模板主题中使用“echo”,因为它会导致输出在循环执行之前出现(也就是在页面顶部)。
在本例中,我在连接到内容输出的函数中使用了get\\u comments函数:
add_filter(\'the_content\', \'includePosts\', 1);
在includePosts函数中,我将$注释设置为显示在$content变量中,并在添加过滤器之前返回$content。
$内容用于wp核心功能“the\\u content”(包括/wp页面模板)。
function the_content($more_link_text = null, $stripteaser = 0) {
$content = get_the_content($more_link_text, $stripteaser);
$content = apply_filters(\'the_content\', $content);
$content = str_replace(\']]>\', \']]>\', $content);
echo $content;
}