Skip to main content

Add text at the top of Add post.

Home Forums WordPress Admin Customization Add text at the top of Add post.

Viewing 0 reply threads
  • Author
    Posts
    • #2486

      Layer7web
      Keymaster
      /**
       * Notice above the text editor for Members area.
       * 
       */
      function l7w_edit_form_after_title() {
          if('custom-post-type' == get_post_type()){
              echo '<h2>Text here</h2>';
          }
      }
      add_action( 'edit_form_after_title', 'l7w_edit_form_after_title' );
Viewing 0 reply threads

You must be logged in to reply to this topic.