Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Nadiamode

    (@nadiamode)

    i found that this function made something conflict with custom taxnomy = “type”

    I try remove below code from plugin and it work, I can access http://example.com/type/digital-sound/

    $taxonomies = get_taxonomies(array("show_ui" => true),'objects');
    		foreach ( $taxonomies as $taxonomy => $objects ):
    			$wp_rewrite->add_rewrite_tag("%$taxonomy%", '(.+?)',"$taxonomy=");
    		endforeach;
    Thread Starter Nadiamode

    (@nadiamode)

    Thank you for updating plugin to version 0.7.3.1

    I notice you replace line 156

    $taxonomies = get_taxonomies(array("show_ui" => true),'objects');

    with

    $taxonomies = get_taxonomies(array("show_ui" => true, "_builtin" => false),'objects');

    but permalink that use “type” as custom taxonomy still doesn’t work when activate plugin

    http :// example. com/type/digital-sound/

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Custom Post Type Permalinks] 404 not found when using custom taxonomy = "type" /’ is closed to new replies.