Created
January 13, 2020 09:16
-
-
Save premanshup/80f8b41a8dc0e5204eaa8ea7fe749881 to your computer and use it in GitHub Desktop.
Remove Comment template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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