>
Download This Plugin | |
Download Elegant Themes | |
Name | Sewn In Simple SEO |
Version | 2.0.5 |
Author | Jupitercow |
Rating | 100 |
Last updated | 2015-03-10 02:28:00 |
Downloads |
68
|
Download Plugins Speed Test plugin for Wordpress |
Home page PageSpeed score has been degraded by 0%, while Post page PageSpeed score has been degraded by 0%
Sewn In Simple SEO plugin added 88 bytes of resources to the Home page and 402 bytes of resources to the sample Post page.
Sewn In Simple SEO plugin added 0 new host(s) to the Home page and 0 new host(s) to the sample Post page.
Great! Sewn In Simple SEO plugin ads no tables to your Wordpress blog database.Adds a fast, simple interface for adding SEO meta data to pags and posts. Designed to remove all of the extra stuff that you just won't use. It is made to be straight forward for users with not confusing extras and no annoying ads. So you can enjoy using it and feel comfortable putting it before a client.
Very simple, no cruft or extra features you won't use.
By default only pages and posts are added, but you can remove either of those and/or add more using this filter:
/**
* Add a post type to the XML sitemap
*
* Takes the default array('post','page') and adds 'news' and 'event' post types
* to it. Returns: array('post','page','news','event')
*
* @param array $post_types List of post types to be added to the XML Sitemap
* @return array $post_types Modified list of post types
*/
add_filter( 'sewn/seo/post_types', 'custom_sitemap_post_types' );
function custom_sitemap_post_types( $post_types )
{
$post_types[] = 'news';
$post_types[] = 'event';
return $post_types;
}
/**
* Completely replace the post types in the XML sitemap
*
* This will replace the default completely. Returns: array('news','event')
*
* The result is to remove 'post' and 'page' post types and to add 'news' and
* 'event' post types
*
* @param array $post_types List of post types to be added to the XML Sitemap
* @return array $post_types Modified list of post types
*/
add_filter( 'sewn/seo/post_types', 'custom_sitemap_post_types' );
function custom_sitemap_post_types( $post_types )
{
$post_types = array('news','event');
return $post_types;
}
Use sparingly. Meta keywords can do more harm than help when used incorrectly. Don't overload them. For that reason, we turned it off by default. If you want them, you can turn them back on by adding this to your functions.php.
add_filter( 'sewn/seo/add_keywords', '__return_true' );
Includes some support for open graph images via the featured image field. Coming soon is a specific upload field.
Sewn In Simple SEO adds the necessary info to the header, but if you would like to be more deliberate, you can turn that off and the items you want back in manually.
Turn off the automated fields:
add_filter( 'sewn/seo/automate_head', '__return_false' );
The actions that currently get automated in (along with the meta title):
do_action( 'sewn/seo/description' ); do_action( 'sewn/seo/keywords' ); do_action( 'sewn/seo/classification' ); do_action( 'sewn/seo/site_name' ); do_action( 'sewn/seo/og:title' ); do_action( 'sewn/seo/og:image' ); do_action( 'sewn/seo/og:type' ); `
Works with the Sewn In XML Sitemap plugin. When installed, the XML sitemap checkbox integrates with the SEO fields. The goal is to keep things very simple and integrated.