Skip to main content

Home/ Wordpress/ Group items tagged permalinks

Rss Feed Group items tagged

John Pratt

WordPress Permalinks for SEO and Speed - 6 views

  •  
    Best permalink structure for SEO and page speed
Vernon Fowler

Using Permalinks « WordPress Codex - 0 views

  • Using %category% with multiple categories on a post When you assign multiple categories to a post, only one can show up in the permalink. This will be the lowest numbered category (see Manage Categories). The post will still be accessible through all the categories as normal.
Erik Emanuelli

What Are Permalinks in WordPress? How to Set Them and Why - 0 views

  •  
    Those are the permanent URLs of the blog posts and pages on your WordPress site. Here's how to set them up.
Vernon Fowler

WordPress › Content Audit « WordPress Plugins - 4 views

  • You can display the audit details to logged-in editors on the front end if you want, either above or below the content. You can style the audit message.
  • If you want to see sparklines from Google Analytics, also install the Google Analytics Dashboard plugin. This will give you some idea of how popular an article is, which might influence your decisions.
  •  
    Lets you create a content inventory right in the WordPress Edit screens. You can mark content as redundant, outdated, trivial, or in need of a review for SEO or style. The plugin creates a custom taxonomy (like a new set of categories) that's visible only from the admin screens. Since the content status labels work just like categories, you can remove the built-in ones and add your own if you like. You can also assign a content owner (distinct from the original author) and keep notes. The IDs are revealed on the Edit screens so you can keep track of your content even if you change titles and permalinks. The plugin supports the new custom content types in 3.0.
Vernon Fowler

Post Types « WordPress Codex - 1 views

  • it is better if you prefix your identifier with a short namespace that identifies your plugin, theme or website that implements the custom post type. For example: acme_product or aw_product for products post type used by a hypothetical ACMEWidgets.com website
  • Namespacing your custom post type identifier will not guarantee against conflicts but will certainly minimize their likelihood.
  • Do pay close attention to not having your custom post type identifier exceed 20 characters though, as the post_type column in the database is currently a VARCHAR field of that length.
  • ...6 more annotations...
  • register_post_type( 'acme_product', array( 'labels' => array( 'name' => __( 'Products' ), 'singular_name' => __( 'Product' ) ), 'public' => true, 'has_archive' => true, ) );
  • When you namespace a custom post type identifier and still want to use a clean URL structure, you need to set the rewrite argument of the register_post_type() function. For example, assuming the ACME Widgets example from above:
  • 'rewrite' => array('slug' => 'products'),
  • Note: In some cases, the permalink structure must be updated in order for the new template files to be accessed when viewing posts of a custom post type.
  • single posts of a custom post type will use single-{post_type}.php and their archives will use archive-{post_type}.php where {post_type} is the $post_type argument of the register_post_type() function.
  • In any template file of the WordPress theme system, you can also create new queries to display posts from a specific post type. This is done via the post_type argument of the WP_Query object.
kumar app

Common SEO Mistakes Bloggers Make - Part 2 - 4 views

  •  
    So you've learned about the first six Common SEO Mistakes Bloggers Make , then here are the rest. a. Keywords are Lost in the Pages Organizing your pages into categories and attaching tags is a great way to optimize you site for the use of search engines. However, those tags loose their focu
kumar app

Common SEO Mistakes Bloggers Make - Part 1 - 4 views

  •  
    Bloggers write to let people know about their personality. It is every bloggers goal to gain a huge fan base and loyal following. Now how does one get a lot of eye-catching attention? If you did a search, on any search engine, about a topic you wrote and found a hit, then you my friend have accompli
1 - 8 of 8
Showing 20 items per page