Are there any seo tips regarding b2evolution blogging script, apart from the built in clean url thing?
as far as i know there aint any current seo related mods for b2evo but wuld like any tips from seos that use that blog.
heres one ive put together. Give your headings titles Firstly open up your b2evo skin(s) _main.php file in a text editor. Find <div id="header"> <h1><a href="<?php $Blog->disp( 'blogurl', 'raw' ) ?>"><?php $Blog->disp( 'name', 'htmlbody' ) ?></a></h1> <div class="description"><?php $Blog->disp( 'tagline', 'htmlbody' ) ?></div> </div> PHP: Replace With <div id="header"> <h1><a href="<?php $Blog->disp( 'blogurl', 'raw' ) ?>" title="<?php $Blog->disp( 'name', 'htmlbody' ) ?>"><?php $Blog->disp( 'name', 'htmlbody' ) ?></a></h1> <div class="description"><?php $Blog->disp( 'tagline', 'htmlbody' ) ?></div> </div> PHP: