在我的wordpress主题中,安装seo yoast后评论回复不起作用-我该如何解决此问题?
答案 0 :(得分:0)
ty的帮助(@Vel)-我看到了该链接-然后阅读了一些有关“ wp_enqueue_script”函数的信息-然后进入了wordpress示例主题(二十二),然后使用此代码(如何使用mutch)然后“:D):
function twentytwelve_scripts_styles() {
/*
* Adds JavaScript to pages with the comment form to support
* sites with threaded comments (when in use).
*/
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'twentytwelve_scripts_styles' );
我将继续阅读有关“ wp_enqueue_script”的更多信息:)
我的问题解决了-tyyyyyyyyyyyyyyyyyyyy;)