Skip to main content

Home/ Wordpress/ Group items tagged content CMS

Rss Feed Group items tagged

anonymous

Defensio Anti-Spam - 0 views

  •  
    Defensio is an advanced spam, malicious content and profanity filtering web service that learns and adapts.
anonymous

Zemanta - 0 views

  •  
    Zemanta finds related content while you write your post, so you can add pictures, links and widgets with a single click.
william x

Flutter : WordPress CMS Plugin by Freshout - 4 views

  •  
    flutter is a kind of CCK Content Creation Kit for Wordpress, you can create custom fields and groups (example, model, price, picture), retrieve and create templates for your data sets
Miren Berasategi

How to use WordPress to run a magazine, news website - 0 views

  •  
    Turn Wordpress into a magazine.
  •  
    WordPress, however, is an extensible website content management system that can be used to run magazine-type websites. Here are steps I took to turn this online magazine on Cebu from a blog into its current presentation. I'm still working on it, though, so you might encounter issues.
Satish Kumar Ithamsetty

20+ Best SEO Plugins for WordPress Blog for better ranking - 2 views

  •  
    Why do you need WordPress SEO Plugins to run your blog? How do these SEO plugins aid your site in optimizing your content and rankings? These are the major questions I hear these days about SEO plugins. So here I have come up with this article about SEO Plugins that will help your WordPress site and I have also listed the top most plugins for you in the below article.
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.
Vernon Fowler

How to Optimize Videos for SEO [an Interview With Joost de Valk] - 2 views

  • Video SEO is mostly a technical thing, assuming you already have video content. It offers absolutely great opportunities because it allows you to appear in the search result pages with a video snippet, which includes an image and therefore attracts far more attention and clicks then a "normal" search result.
  • What does your Video SEO plugin actually do? It goes through a series of steps, as soon as you update a post that you put a video in: It recognises the video and, depending on whether it's a self-hosted video or hosted on a site like Vimeo, determines what to do; If it's for instance hosted on Vimeo, it'll retrieve the video details from the Vimeo API; It'll determine which thumbnail to attach to the video and what the duration of the video is; It then saves all this metadata so that you get a video snippet in the snippet preview AND a video XML sitemap entry is generated for the post / page. It does all that on the fly, as soon as the plugin is activated you only have to add a video to a post and it'll automatically recognize it and go through those steps for you.
  • if you are serious about video production for your WordPress site and stand to profit from increased rankings and click-throughs, you should strongly consider purchasing Video SEO
  • ...1 more annotation...
  • If on the other hand you are a "hobby" blogger or are not profiting from your site's traffic, the plugin may not be a viable option. If you do not stand to profit from the investment, $89 is a considerable sum of money to fork out.
Vernon Fowler

WordPress › WP Glossary « WordPress Plugins - 3 views

  • Display and link to glossary with slug 'seo' [glossary slug='seo'] Auto search word for matching glossary term (e.g. 'seo') [glossary]SEO[/glossary] Apply glossary term with slug 'seo' to post content 'search engine optimisation' [glossary slug='seo']search engine optimisation[/glossary]
  • [glossary]SEO[/glossary]
Vernon Fowler

Child Themes « WordPress Codex - 0 views

  • A child theme resides in its own directory in wp-content/themes. The scheme below shows the location of a child theme along with its parent theme (Twenty Twelve) in a typical WordPress directory structure:
  • This directory can contain as little as a style.css file, and as much as any full-fledged WordPress theme contains: style.css (required) functions.php (optional) Template files (optional) Other files (optional)
  • @import url("../twentytwelve/style.css");
  • ...4 more annotations...
  • Note on the @import rule There must be no other CSS rules above the @import rule. If you put other rules above it, it will be invalidated and the stylesheet of the parent will not be imported.
  • Unlike style.css, the functions.php of a child theme does not override its counterpart from the parent. Instead, it is loaded in addition to the parent’s functions.php. (Specifically, it is loaded right before the parent’s file.)
  • But, when creating child themes, be aware that using add_theme_support('post-formats') will override the formats as defined by the parent theme, not add to it.
  • A child theme can override any parental template by simply using a file with the same name.
« First ‹ Previous 41 - 60 of 68 Next ›
Showing 20 items per page