Advertisement
fahimmurshed

Remove Astra Page Post Title

Apr 3rd, 2020
297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. /* Disable title on all post types. */
  2.   function your_prefix_post_title() {
  3.      $post_types = array('page');
  4.      // bail early if the current post type if not the one we want to customize.
  5.  if ( ! in_array( get_post_type(), $post_types ) ) { return; } // Disable Post featured image.
  6.  add_filter( 'astra_the_title_enabled', '__return_false' );
  7.  }
  8.  add_action( 'wp', 'your_prefix_post_title' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement