Support

Account

Home Forums General Issues Changing title by field ACF

Unread

Changing title by field ACF

  • I would like to know how do I put the taxonomy in the title field?

    Title: Field (selection type) ACF + Category WP.

    Hide the field I know, it’s this code that is here, but I do not know how to replace the title with Field ACF + Category WP.

    add_action('admin_head', 'hide_wp_title_input');
    function hide_wp_title_input() {
      $screen = get_current_screen();
      if ($screen->id != 'your-custom-post-type') {
        return;
      }
      ?>
        <style type="text/css">
          #post-body-content {
            display: none;
          }
        </style>
      <?php 
    }
Viewing 1 post (of 1 total)

The topic ‘Changing title by field ACF’ is closed to new replies.