Support » Plugin: Custom Post Type Permalinks » Fatal error…

Viewing 1 replies (of 1 total)
  • I had this error too with WordPress 3.9
    The plugin is called too early.

    Change the main custom-post-type-permalinks.php file like this:

    require_once dirname(__FILE__).'/CPTP.php';
    
    add_action( 'init', 'cptp_init_instance' );
    
    function cptp_init_instance()
    {
        CPTP::get_instance();
    }

    Be careful next time you update the plugin though.

Viewing 1 replies (of 1 total)
  • The topic ‘Fatal error…’ is closed to new replies.