Fancy Page Transition : Html Script

November 6th, 2009

Fancy Page Transition
Below is a great and simple piece of html code for a Fancy Page Transition.
You can view a sample by hitting your browsers back and forward button a few times!
The html script will give 23 different page transitions on a random basis.

Read More >>



HTML Script for Creating Anchors

November 6th, 2009

Page anchors allow visitors to jump to a specific place in the current webpage or to jump to a specific place on another web page.
You usually use page anchors if you want a graphic or text to link half way down another page. That way your visitor doesn’t have read all through the page to [...]

Read More >>



How to Make Frames : HTML Scritps

November 6th, 2009

When your visiting a site with frames you see the left frame and the right frame . There is also a hidden index page that keeps these two pages in their frames.
The index page tells your frames what to do. It won’t have any text or images on it that your visitor can see. Your [...]

Read More >>



Display Content Only To Registered Users : Wordpress

November 5th, 2009

The problem.
As you probably know, WordPress lets you decide whether to allow readers to create accounts and sign in to your blog. If you want to increase your blog’s registered readers or would just like to reward existing readers, why not keep some content private, just for them?

Read More >>



WordPress Coding Techniques : Style Posts Individually

November 5th, 2009

The problem.
Your blog has a lot of posts, but the posts aren’t all of the same type. To give special styling to one or more of your posts, you can take advantage of both the post_class() function and the post ID.
The solution.
To apply this trick, just open your single.php file, find the loop and replace [...]

Read More >>



Restore Your WordPress Database

November 5th, 2009

The problem. Let’s say, for some reason, such as a hacking or upgrade problem, you have lost your blog data or it has become corrupted. If you have a backup (and I hope you do!) you will have to import it to your WordPress database.

Read More >>



Batch Delete Post Revisions Wordpress

November 5th, 2009

The problem. Post revisions, a new WordPress 2.6 feature, can be very useful, but they also increase the size of your MySQL database. Sure, you can manually delete posts revisions, but that’s very long and boring work.
The solution. The solution to this problem is simple: we batch delete post revisions by using a simple SQL [...]

Read More >>



Creating a Backup of Your Database

November 5th, 2009

The problem. While the tips in the rest of this post have been tested, you should definitely not try any of them without first having a proper backup of your MySQL database.
The solution. To create a manual backup of your WordPress database, follow these simple steps:

Log in to phpMyAdmin and select your WordPress database.
Once done, [...]

Read More >>



List Your Scheduled Posts : Wordpress Hack

November 4th, 2009

The problem. Like many bloggers, you probably want your readers to visit your blog more often or subscribe to your RSS feed. A good way to make them curious about your future posts is by listing the titles of your scheduled posts.

Read More >>



Using CSS Sliding Doors in WordPress Navigaton

November 4th, 2009

The problem. The built-in wp_list_pages() and wp_list_categories() functions allow lots of things, but they do not allow you to embed a element so that you can use the well-known CSS sliding-doors technique. Happily, with some help from PHP and regular expressions, we can use this awesome technique on a WordPress blog.

Read More >>