Yoast SEO (free or Premium) adds canonical URLs to your WordPress install for all content that has been marked for indexing by the search engines. It does this automatically and in 99.9% of the cases, you don’t have to change anything about them. Depending on the installed version of the…
Read More
Posts in WordPress
How to Create Archives for Custom Taxonomies in WordPress
Step 1: 1. Creating a Custom Post Type To create a custom post type, add the following code in your theme’s functions.php file add_action('init', 'create_post_type'); function create_post_type() { register_post_type( 'project', array( 'labels' => array( 'name' => __('Projects'), 'singular_name' => __('Project'), 'all_items' => __('All Projects') ), 'public' => true,…
Read More