To modify the title tag of your website index page you need to login to the WordPress admin panel. Go to Settings -> General. On this page, edit the Site Title field…
Author: Admin
How to display an RSS feed in WordPress?
RSS stands for Really Simple Syndication is a web feed format for publishing frequent updates of site content such as news, blog posts, etc. In WordPress you can easily add RSS feeds…
How to exclude a folder from WordPress permalinks?
WordPress default rewrite rules for permalinks will not work in some cases. For example, when you have some settings declared in htaccess files located in subfolders. To exclude the subfolders from the…
How to embed a video into a post in WordPress?
To Embed videos into your WordPress posts is very easy. To embed a video in a new post, login into your admin panel and choose Posts -> Add New. From the WYSIWYG…
How to add tags to a post in WordPress?
In WordPress adding tags is very simple Adding tags to your WordPress posts will help you organize your blog’s content. Tags will also help your visitors find their way around your site…
How to display a random comment from a post?
If you want to add a random comment from one of your posts by using the following code in your theme: <?php $post_id = 35; $comments = get_comments(“post_id=$post_id&status=approve”); if ($comments) { $ndx…
Best Image Gallery Plugins for WordPress
NextGEN Gallery NextGEN Gallery is the most popular WordPress gallery plugin, It provides a powerful engine for uploading and managing galleries of images, with the ability to batch upload, import meta data, add/delete/rearrange/sort…
How to Add a Facebook Like Button to WordPress?
To add the Facebook famous “Like” and “Recommend” button to your posts and it increase their website popularity. First, Login as administrator in your WordPress admin panel. Then go to Appearance ->…
How to change a WordPress site URL
If you may want to change the URL of your WordPress site. The function provided by the WordPress developers to change the site url is “update_option”. Simply add these lines to the…