How to remove all post meta in Generatepress?
-
Hello,
I want to remove all post meta information from everywhere on my website. Is this function correct to do that?
add_action( 'wp','tu_remove_blog_meta' ); function tu_remove_blog_meta() { add_filter( 'generate_post_date_output','__return_false' ); add_filter( 'generate_post_author_output','__return_false' ); add_filter( 'generate_category_list_output','__return_false' ); add_filter( 'generate_tag_list_output','__return_false' ); add_filter( 'generate_show_comments','__return_false' ); }
I found it on Generatepress website.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘How to remove all post meta in Generatepress?’ is closed to new replies.