从您的子主题函数文件将其挂接,或将模板标记添加到首页。php文件
Untested
add_action(\'loop_end\',\'disqus_front_page_after_loop\');
function disqus_front_page_after_loop() {
if (is_front_page() && function_exists( \'comments_template\' ) ) {
comments_template();
}
}
更改loop\\u end
hook 到另一个WordPress或主题特定挂钩。
如果使用模板标记,您可能希望尝试将其添加到页脚之前,而不是在循环外部工作的循环结束之前。