Control Panel
Login to Begin to Talk!





Click Here to Register!
Advertisements



Go Back   Site Sift Forums > Site-Sift > Mods

 
 
Thread Tools Search this Thread Display Modes
  #1  
Old 08-10-2007, 06:54 PM
eyewearcases eyewearcases is offline
Clueless
 
Join Date: Jul 2007
Posts: 28
Default limiting keywords, title and description

The point is to make the page seo friendly.

I did this in include/myfunctions.ini.php

underneath where it says
Quote:
else//print meta tags
I changed the code to this:

Code:
$titlelength = strlen($page['title']); // count number of characters $titlelimit = 77; // set character limit if ($titlelength > $titlelimit) { // if character number if more than character limit $page['title'] = substr($page['title'],0,$titlelimit) . "..."; // display string up to character limit, add dots } print '<title>'.$page['title'].'</title>'; if($page['keywords'] != ''){ $keywordlength = strlen($page['keywords']); // count number of characters $keywordlimit = 150; // set character limit if ($keywordlength > $keywordlimit) { // if character number if more than character limit $page['keywords'] = substr($page['keywords'],0,$keywordlimit); // display string up to character limit, add dots } print '<meta name="keywords" content="'.$page['keywords'].'">';} else print '<meta name="keywords" content="'.$page['title'].'">'; $descriptionlength = strlen($page['description']); // count number of characters $descriptionlimit = 147; // set character limit if ($descriptionlength > $descriptionlimit) { // if character number if more than character limit $page['description'] = substr($page['description'],0,$descriptionlimit) . "..."; // display string up to character limit, add dots } print '<meta name="description" content="'.$page['description'].'">'; }//end function


limiting the title to 80 chars, and the meta keywords and description to 150.

edit:
some other nice things to do are, make the titles link to the websites instead of having 'visit site' as the link text. I put thumbshots previews under the descriptions too and it looks really nice. My site is links.eyewearcases.com if you want to see. /plug

Last edited by eyewearcases : 08-10-2007 at 07:12 PM.
  #2  
Old 09-07-2007, 08:42 PM
killermule killermule is offline
Clueless
 
Join Date: May 2007
Posts: 44
Default

There are already limitations in place.... Im not sure what they are but they do the job.
 


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump



All times are GMT -7. The time now is 04:16 PM.


Powered by: vBulletin Version 3.0.7
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Site Sift Media, Inc.