RSS Feeds are very popular among the blog owners. When the blog owners include the RSS Feeds on their blog, it helps to keep their readers informed about the updates on their blog. If you have a blog you should definitely promote RSS Feeds as it can help to attract traffic towards your blog. What […]
Month: July 2013
3 posts
Create a custom PHP page in the WordPress environment
How to create a custom PHP page that have access to all variables and functions within the environment of our WordPress blog? The answer is very simple. First create a page in your theme folder: /wp-content/themes/your-theme-name/page.php After that use this code in the top of your page [sourcecode language=”php”]<?php define(‘WP_USE_THEMES’, false); require(‘../../../wp-blog-header.php’); ?>[/sourcecode] Now you […]
Hide a part from your content from non-registred visitors
Trying to get new “members” to his WordPress blog is not always easy. To try to push visitors to register and join your blog, you might resort to drastic measures as to conceal a portion of text. Or, another scenario, you might want to reserve a portion of text only to the most loyal visitors: […]