Permalink |
X

Congrats, You are Subscribed to Receive Updates.

Creating Permalink For Custom Post types

Creating Permalink For Custom Post types
In my Previous Post, I  wrote about plugins and themes to create Custom Post Type Permalinks. Here I am going to create  Custom Post type and Create Permalink for it.  Let me creating a custom post type named “recipes” and custom taxonomy “Occasions” by the following way. add_action( 'init', 'kv_register_my_types' ); function kv_register_my_types() { register_post_type( 'recipes', array( 'labels' => array( 'name' => __( 'Recipes' ), ...

Custom Post Type and Taxonomy Permalink Creation

Custom Post Type and Taxonomy Permalink Creation
Creating Permalink for your custom post is another important work for proper link management. But in default WordPress allow you to create Permalinks for  default Post type. So we need to code it on our own to create Permalink for our custom post type. For the custom creation, You can adapt a plugin for your custom post type permalink management.    We can learn it ...

Menu

Sidebar