Skip to content

Instantly share code, notes, and snippets.

@premanshup
Created January 13, 2020 09:16
Show Gist options
  • Select an option

  • Save premanshup/80f8b41a8dc0e5204eaa8ea7fe749881 to your computer and use it in GitHub Desktop.

Select an option

Save premanshup/80f8b41a8dc0e5204eaa8ea7fe749881 to your computer and use it in GitHub Desktop.
Remove Comment template
add_action( 'astra_template_parts_content_top', 'astra_disable_comment_template', 15 );
function astra_disable_comment_template() {
remove_action( 'astra_page_template_parts_content', array( Astra_Loop::get_instance(), 'template_parts_comments' ), 15 );
remove_action( 'astra_template_parts_content', array( Astra_Loop::get_instance(), 'template_parts_comments' ), 15 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment