Search Engine Optimization (SEO)

Is anyone aware of any plug-ins that could be used for SEO or tips on how to improve SEO?

Comments

  • Try adding the following to the end of your config.php ...
    (You will need to insert your keywords, description, and API keys)

    // Start Custom SEO Modifications for config.php by www.mattwilborne.com
    function AddMetaKey($action){
    $action->element('meta', array('name'=>'keywords', 'content'=>'YOUR_KEYWORDS'));
    $action->element('meta', array('name'=>'description', 'content'=>'YOUR_DESCRIPTION'));
    $action->element('meta', array('name'=>'robots', 'content'=>'index,follow'));
    $action->element('meta', array('name'=>'y_key', 'content'=>'YOUR_YAHOO_WEBMASTER_KEY'));
    $action->element('meta', array('name'=>'alexaVerifyID', 'content'=>'YOUR_ALEXA_WEBMASTER_KEY'));
    $action->element('meta', array('name'=>'msvalidate.01', 'content'=>'YOUR_BING_WEBMASTER_KEY'));
    $action->element('meta', array('name'=>'google-site-verification', 'content'=>'YOUR_GOOGLE_WEBMASTER_KEY'));
    return true;
    }
    Event::addHandler('EndShowHeadElements', 'AddMetaKey');
    // End Custom SEO Modifications for config.php by www.mattwilborne.com
  • I'm interested in this topic.
  • Thanks!! Any other tips you have?
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Google Sign In with OpenID