Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Michael Beckwith

    (@tw2113)

    The BenchPresser

    I believe I’ve had it at 10 for a long time, and at this point, probably best to do something like the following from your functions.php rather than modifying directly.

    remove_action( 'init', 'cptui_create_custom_post_types', 10 );
    add_action( 'init', 'cptui_create_custom_post_types', 11 );

    It’d remove it from the callback array and then re-add right away, at the lower priority.

    Thread Starter arjanvandenbos

    (@arjanvandenbos)

    Thanks, this worked

    Plugin Contributor Michael Beckwith

    (@tw2113)

    The BenchPresser

    Should be safe from future updates too, so you’re golden.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘New custom post type not showing up in WP Dashboard menu – Thesis theme framewor’ is closed to new replies.