New Taxonomies and Default Post Category Issue
I'm re-structuring an old WordPress blog I have with new custom-taxonomies for better organization. The old blog has just a few terms under default "Category" taxonomy and one of this terms were assigned as the "Default Post Category" on the Settings tab.
I created a few custom-taxonomies within the functions.php file of a child theme for the blog and assigned these taxonomies to work with the default Post content type.
So I wrote a test post and assigned with one term of the new taxonomy only, but when I hit Publish, Wordpress assigns automatically the Default Post Category to it as well. And when I click View on that post, the permalink shows the post under the default category term and not the term of the new custom-taxonomy I choose.
My Permalinks are /%category%/%postname%/
But I want the term of the new taxonomies to appear not the Default Category, as it's happening now.
I will put the code I use to set up the new taxonomy here, so maybe there's something wrong with that.
// Add Destino Taxonomy
add_action( 'init', 'create_destinos_taxonomy' );
function create_destinos_taxonomy()
$labels = array(
'name' => 'Destinos',
'singular_name' => 'Destino',
'search_items' => 'Search Destinos',
'all_items' => 'All Destinos',
'edit_item' => 'Edit Destino',
'update_item' => 'Update Destino',
'add_new_item' => 'Add New Destino',
'new_item_name' => 'New Destino Name',
'menu_name' => 'Destino',
'view_item' => 'View Destino',
'popular_items' => 'Popular Destino',
'separate_items_with_commas' => 'Separate Destinos with
commas',
'add_or_remove_items' => 'Add or remove Destinos',
'choose_from_most_used' => 'Choose from the most used
Destinos',
'not_found' => 'No Destinos found'
);
register_taxonomy(
'destino',
'post',
array(
'label' => __( 'Destino' ),
'hierarchical' => true,
'labels' => $labels,
'public' => true,
'show_in_nav_menus' => true,
'show_tagcloud' => false,
'show_admin_column' => true,
'rewrite' => array(
'slug' => 'destinos'
)
)
);
I think it's good to say I don't intend to use the Default Category after I renew the blog. I will distribute the already existing posts among the new taxonomies.
I appreciate any help, thanks!!!
wordpress permalinks custom-taxonomy
add a comment |
I'm re-structuring an old WordPress blog I have with new custom-taxonomies for better organization. The old blog has just a few terms under default "Category" taxonomy and one of this terms were assigned as the "Default Post Category" on the Settings tab.
I created a few custom-taxonomies within the functions.php file of a child theme for the blog and assigned these taxonomies to work with the default Post content type.
So I wrote a test post and assigned with one term of the new taxonomy only, but when I hit Publish, Wordpress assigns automatically the Default Post Category to it as well. And when I click View on that post, the permalink shows the post under the default category term and not the term of the new custom-taxonomy I choose.
My Permalinks are /%category%/%postname%/
But I want the term of the new taxonomies to appear not the Default Category, as it's happening now.
I will put the code I use to set up the new taxonomy here, so maybe there's something wrong with that.
// Add Destino Taxonomy
add_action( 'init', 'create_destinos_taxonomy' );
function create_destinos_taxonomy()
$labels = array(
'name' => 'Destinos',
'singular_name' => 'Destino',
'search_items' => 'Search Destinos',
'all_items' => 'All Destinos',
'edit_item' => 'Edit Destino',
'update_item' => 'Update Destino',
'add_new_item' => 'Add New Destino',
'new_item_name' => 'New Destino Name',
'menu_name' => 'Destino',
'view_item' => 'View Destino',
'popular_items' => 'Popular Destino',
'separate_items_with_commas' => 'Separate Destinos with
commas',
'add_or_remove_items' => 'Add or remove Destinos',
'choose_from_most_used' => 'Choose from the most used
Destinos',
'not_found' => 'No Destinos found'
);
register_taxonomy(
'destino',
'post',
array(
'label' => __( 'Destino' ),
'hierarchical' => true,
'labels' => $labels,
'public' => true,
'show_in_nav_menus' => true,
'show_tagcloud' => false,
'show_admin_column' => true,
'rewrite' => array(
'slug' => 'destinos'
)
)
);
I think it's good to say I don't intend to use the Default Category after I renew the blog. I will distribute the already existing posts among the new taxonomies.
I appreciate any help, thanks!!!
wordpress permalinks custom-taxonomy
add a comment |
I'm re-structuring an old WordPress blog I have with new custom-taxonomies for better organization. The old blog has just a few terms under default "Category" taxonomy and one of this terms were assigned as the "Default Post Category" on the Settings tab.
I created a few custom-taxonomies within the functions.php file of a child theme for the blog and assigned these taxonomies to work with the default Post content type.
So I wrote a test post and assigned with one term of the new taxonomy only, but when I hit Publish, Wordpress assigns automatically the Default Post Category to it as well. And when I click View on that post, the permalink shows the post under the default category term and not the term of the new custom-taxonomy I choose.
My Permalinks are /%category%/%postname%/
But I want the term of the new taxonomies to appear not the Default Category, as it's happening now.
I will put the code I use to set up the new taxonomy here, so maybe there's something wrong with that.
// Add Destino Taxonomy
add_action( 'init', 'create_destinos_taxonomy' );
function create_destinos_taxonomy()
$labels = array(
'name' => 'Destinos',
'singular_name' => 'Destino',
'search_items' => 'Search Destinos',
'all_items' => 'All Destinos',
'edit_item' => 'Edit Destino',
'update_item' => 'Update Destino',
'add_new_item' => 'Add New Destino',
'new_item_name' => 'New Destino Name',
'menu_name' => 'Destino',
'view_item' => 'View Destino',
'popular_items' => 'Popular Destino',
'separate_items_with_commas' => 'Separate Destinos with
commas',
'add_or_remove_items' => 'Add or remove Destinos',
'choose_from_most_used' => 'Choose from the most used
Destinos',
'not_found' => 'No Destinos found'
);
register_taxonomy(
'destino',
'post',
array(
'label' => __( 'Destino' ),
'hierarchical' => true,
'labels' => $labels,
'public' => true,
'show_in_nav_menus' => true,
'show_tagcloud' => false,
'show_admin_column' => true,
'rewrite' => array(
'slug' => 'destinos'
)
)
);
I think it's good to say I don't intend to use the Default Category after I renew the blog. I will distribute the already existing posts among the new taxonomies.
I appreciate any help, thanks!!!
wordpress permalinks custom-taxonomy
I'm re-structuring an old WordPress blog I have with new custom-taxonomies for better organization. The old blog has just a few terms under default "Category" taxonomy and one of this terms were assigned as the "Default Post Category" on the Settings tab.
I created a few custom-taxonomies within the functions.php file of a child theme for the blog and assigned these taxonomies to work with the default Post content type.
So I wrote a test post and assigned with one term of the new taxonomy only, but when I hit Publish, Wordpress assigns automatically the Default Post Category to it as well. And when I click View on that post, the permalink shows the post under the default category term and not the term of the new custom-taxonomy I choose.
My Permalinks are /%category%/%postname%/
But I want the term of the new taxonomies to appear not the Default Category, as it's happening now.
I will put the code I use to set up the new taxonomy here, so maybe there's something wrong with that.
// Add Destino Taxonomy
add_action( 'init', 'create_destinos_taxonomy' );
function create_destinos_taxonomy()
$labels = array(
'name' => 'Destinos',
'singular_name' => 'Destino',
'search_items' => 'Search Destinos',
'all_items' => 'All Destinos',
'edit_item' => 'Edit Destino',
'update_item' => 'Update Destino',
'add_new_item' => 'Add New Destino',
'new_item_name' => 'New Destino Name',
'menu_name' => 'Destino',
'view_item' => 'View Destino',
'popular_items' => 'Popular Destino',
'separate_items_with_commas' => 'Separate Destinos with
commas',
'add_or_remove_items' => 'Add or remove Destinos',
'choose_from_most_used' => 'Choose from the most used
Destinos',
'not_found' => 'No Destinos found'
);
register_taxonomy(
'destino',
'post',
array(
'label' => __( 'Destino' ),
'hierarchical' => true,
'labels' => $labels,
'public' => true,
'show_in_nav_menus' => true,
'show_tagcloud' => false,
'show_admin_column' => true,
'rewrite' => array(
'slug' => 'destinos'
)
)
);
I think it's good to say I don't intend to use the Default Category after I renew the blog. I will distribute the already existing posts among the new taxonomies.
I appreciate any help, thanks!!!
wordpress permalinks custom-taxonomy
wordpress permalinks custom-taxonomy
asked Nov 13 '18 at 17:51
FabioBFabioB
11
11
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53286862%2fnew-taxonomies-and-default-post-category-issue%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53286862%2fnew-taxonomies-and-default-post-category-issue%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown