• The code for handling the with_front option should be re written.

    On line 204 it has

    if ( $cptm_withfront ) { $cptm_rewrite_options['with_front'] = $cptm_withfront; }

    which if $cptm_withfront is set to false does not add the key with_front to the array which results in wordpress using the default which is true. To work properly the line should be changed to

    $cptm_rewrite_options['with_front'] = $cptm_withfront;

    http://wordpress.org/extend/plugins/custom-post-type-maker/

The topic ‘with_front rewrite option not working’ is closed to new replies.