Advertisement

-
Giant List of Blog Directories
Are you looking to increase the traffic to your blog? Building links from directories will increase your link popularity, direct traffic, and search engine rankings.
There are several lists of “Blog Directories” around the Internet, but most of them feature only a hand full of directories, and they lack a ranking factor to make it easier for the reader to scan through the list.
Below you will find a very extensive list of Blog Directories, ordered according to their Alexa rank. We have also inserted the Pagerank of each directory on the list to make it more detailed. Enjoy!
Blog Directory Pagerank Alexa http://dir.yahoo.com/Internet/World_Wide_Web/Weblogs/ 5 1 http://dmoz.org/Computers/Internet/On_the_Web/Weblogs/ 6 316 http://www.blogcatalog.com/ 7 4821 http://blogflux.com/ 7 5350 http://blogs.botw.org/ 6 7501 http://www.geekyspeaky.com/links/ 5 13431 http://www.blogpulse.com/index.html 7 23826 http://www.blogdigger.com/index.html 7 29593 http://www.blogarama.com/ 7 33807 http://www.bloghop.com/ 6 46602 http://www.blogrankings.com/ 7 54862 http://www.blogtoplist.com/ 6 58187 http://www.findory.com/blogs/ 5 12610 http://www.bloggernity.com/ 6 46840 http://www.bloggeries.com/ 6 62276 http://www.bloghub.com/ 7 70000 http://www.lsblogs.com/ 6 72172 http://www.blog-search.com/ 6 74926 http://www.britblog.com/ 6 77798 http://www.weblogalot.com/ 6 80012 http://www.globeofblogs.com/ 6 83121 http://blogstreet.com/? 7 84667 http://www.bloguniverse.com/ 6 92205 http://www.top100bloggers.com/ 6 96308 http://www.getblogs.com/ 7 100052 http://www.delightfulblogs.com/ 6 118010 http://www.bloogz.com/ 6 104394 http://portal.eatonweb.com/ 7 118470 http://www.readablog.com/default.aspx 5 119470 http://www.iblogbusiness.com/ 5 122972 http://findingblog.com/ 6 134736 http://www.all-blogs.net/ 5 136386 http://www.bloglisting.com/ 5 165293 http://www.blogdup.com/ 5 174240 http://sportsblogs.org/ 6 181274 http://www.blogcode.com/index.php 5 200304 http://blogannounce.info/ 5 216210 http://www.blog-directory.org/index.php 6 231052 http://www.sarthak.net/blogz/index.php 5 231244 http://www.blogsweet.com/ 6 240401 http://www.blogdirs.com/ 5 243187 http://www.addurlblog.com/ 5 245137 http://www.5starblogs.com/ 5 246817 http://www.blogtagstic.com/ 5 253731 http://www.blogscanada.ca/directory/ 0 260041 http://www.industry-blogs.com/ 5 270163 http://www.blogbib.com/ 5 270449 http://www.kmax.ws/bloglinks.htm 5 304010 http://www.blogs-collection.com/ 5 313468 http://www.diarist.net/registry/ 6 314116 http://www.blogbunch.com/ 4 314157 http://www.blog-watch.com/ 5 314160 http://www.photoblogdirectory.net/ 5 319197 http://blogsforsmallbusiness.com/directory/ 5 325343 http://www.bloghints.com/ 4 361618 http://www.search4blogs.com/bloggers/index.php 6 381223 http://www.thevital.net/ 5 419847 http://www.highclassblogs.com/ 5 497951 http://emarketingblogs.com/listings/index.shtml 5 504610 http://jenett.org/ageless/ 5 515636 http://www.bestblogs.org/ 5 548901 http://www.misohoni.com/bba/ 5 559462 http://www.blogdust.com/blog-directory/ 4 622062 http://blogs.tomstopsites.com/ 5 629832 http://www.chinabloglist.org/ 5 632138 http://www.blogadr.com/ 4 715258 http://directory.etalkinghead.com/ 5 735127 http://www.topblogsites.net/ 5 751608 http://www.biggerblogger.com/ 4 768196 http://www.blogroll.net/ 4 814706 http://www.blogscholar.com/component/ 5 817622 http://www.blogpoint.com/ 4 883904 http://browseblogs.com/ 4 1039483 http://www.blogsrating.com/ 4 1078346 http://www.blogdir.co.uk/ 4 1098680 http://www.quickblogdirectory.com/ 4 2113555
-
SEO; Search engine optimization for Your Site
Search engine optimization (SEO) is the process of improving the volume and quality of traffic to a web site from search engines via "natural" ("organic" or "algorithmic") search results. Typically, the higher a site's "page rank" (i.e, the earlier it comes in the search results list), the more visitors it will receive from the search engine. SEO can also target different kinds of search, including image search, local search, and industry-specific vertical search engines.
As an Internet marketing strategy, SEO considers how search engines work and what people search for. Optimizing a website primarily involves editing its content and HTML coding to both increase its relevance to specific keywords and to remove barriers to the indexing activities of search engines.
The acronym "SEO" can also refer to "search engine optimizers," a term adopted by an industry of consultants who carry out optimization projects on behalf of clients, and by employees who perform SEO services in-house. Search engine optimizers may offer SEO as a stand-alone service or as a part of a broader marketing campaign. Because effective SEO may require changes to the HTML source code of a site, SEO tactics may be incorporated into web site development and design. The term "search engine friendly" may be used to describe web site designs, menus, content management systems and shopping carts that are easy to optimize.
Another class of techniques, known as black hat SEO or Spamdexing, use methods such as link farms and keyword stuffing that degrade both the relevance of search results and the user-experience of search engines. Search engines look for sites that employ these techniques in order to remove them from their indices.
-
How To: Rearrange WordPress Comments (Latest On Top)
A few days ago i had to make a minor change to my friend’s site, he wanted the latest comments to be right on top instead of the usual at the bottom of a page, so I had to re-arrange how the comments appeared and if for some reason you need this function all you have to do is a minor edit of /wp-includes/comment-template.php.
Original Code:
// TODO: Use API instead of SELECTs.
if ( $user_ID) {
$comments = $wpdb->get_results("SELECT * FROM $wpdb->comments WHERE comment_post_ID = '$post->ID' AND (comment_approved = '1' OR ( user_id = '$user_ID' AND comment_approved = '0' ) ) ORDER BY comment_date");
} else if ( empty($comment_author) ) {
$comments = $wpdb->get_results("SELECT * FROM $wpdb->comments WHERE comment_post_ID = '$post->ID' AND comment_approved = '1' ORDER BY comment_date");
} else {
$author_db = $wpdb->escape($comment_author);
$email_db = $wpdb->escape($comment_author_email);
$comments = $wpdb->get_results("SELECT * FROM $wpdb->comments WHERE comment_post_ID = '$post->ID' AND ( comment_approved = '1' OR ( comment_author = '$author_db' AND comment_author_email = '$email_db' AND comment_approved = '0' ) ) ORDER BY comment_date");
}Amazingly enough all you have to do is add a four letter word… DESC :
// TODO: Use API instead of SELECTs.
if ( empty($comment_author) ) {
$comments = $wpdb->get_results(”SELECT * FROM $wpdb->comments WHERE comment_post_ID = ‘$post->ID’ AND comment_approved = ‘1′ ORDER BY comment_date DESC“);
} else {
$author_db = $wpdb->escape($comment_author);
$email_db = $wpdb->escape($comment_author_email);
$comments = $wpdb->get_results(”SELECT * FROM $wpdb->comments WHERE comment_post_ID = ‘$post->ID’ AND ( comment_approved = ‘1′ OR ( comment_author = ‘$author_db’ AND comment_author_email = ‘$email_db’ AND comment_approved = ‘0′ ) ) ORDER BY comment_date DESC“);
}That’s it!
UPDATE: I fired up my Dreamwever and can confirm that you’ll find the code in just about line 290
From : WP_Design