Viewing 1 replies (of 1 total)
  • Plugin Author Yakir Sitbon

    (@kingyes)

    You can’t do that. cuz in the new post type you need to set slug for the permalinks.

    But, if you want to setup all functions to CPT post, you can use with this code:

    add_filter( 'linker_post_type_slug', function ( $cpt ) {
    return 'post';
    } );
    
    add_filter( 'linker_skip_register_post_type', '__return_true' );

    For now, you can not see the posts in your website.

Viewing 1 replies (of 1 total)
  • The topic ‘Remove /go/ from links.’ is closed to new replies.