CodeIgniter
Hi, this category will contains a “Tutorials” and “How To” for everything about CodeIgniter. I will write a lot soon, so keep following me
View ArticleWordPress
Hi, this category will contains a “Tutorials” and “How To” for everything about WordPress. I will write a lot soon, so keep following me
View ArticleCategories Images
Categories Images is a WordPress plugin which allow you to add an image for each category (or term), it is so easy to user. This plugin will create a new text input that will had the image url of the...
View ArticleHow to create a custom page template in WordPress
How to create a custom page template in WordPress: Step 1: Create a new file in your wordpress theme folder and name it (for example) custom-template.php Step 2: Edit the file and put the following...
View ArticleHow to change the Views path in CodeIgniter
Step 1: open Loader.php file located in ./system/core/loader.php for editing. Step 2: Search for $this->_ci_view_paths (since CodeIgniter 2.0 go to line 130) and replace this...
View ArticleHow to exclude posts from children categories in WordPress
Hi, the default wordpress category template shows all the posts for this category and also all posts from the children categories, some times we need to only get the category posts and exclude all...
View ArticleHow to get post thumbnail url in WordPress
The easiest way to get the pot thumbnail url in WordPress is using this line of code: <?php $url = wp_get_attachment_url(get_post_thumbnail_id($post->ID)); ?> <img src="<?php echo $url;...
View Article