Author Archive: anki
PHP Framework video Tutorials
PHP MVC Framework live example tutorials PHP MVC frameworks Tutorials Part 1 PHP MVC frameworks Tutorials part 2 PHP MVC frameworks Tutorials part 3 PHP MVC frameworks Tutorials part 4 PHP MVC frameworks Tutorials part 5
List WordPress Popular Post Without Plugin for theme development
This method actually uses wpdb class function. As Bin-Blog shows points out here , an easy way to list the popular post is by using wpdb class function to get the result for most commented posts. [php] $popular_posts = $wpdb->get_results(&
Getting wp Tag Cloud in WordPress Theme Development
Showing wordpress cloud tag is very simple. Just specify the size of the most and least tagged post and how do you want to order it by. [php] <div> <div>wp_tag_cloud(‘number=30&smallest=14&largest=30&orderby=name’);</
Listing wp-pages in WordPress Custom theme Development
Listing how many pages you have is pretty much same as category. Therefore, I won’t go into too much details [php] /* Listing all pages*/ wp_list_pages(‘title_li=’); /* Exclude pages */ wp_list_pages(‘exclude=17,38′ ); /* Order by dat
WordPress Theme Development useful Template Tags
Template tags can be used in your wordpress theme to display information dynamically or retrieving information about your wordpress blog. In this post we will show you some easy and useful wordpress template tag that you can use in your theme.
SEO Friendly URLs with PHP
This post explains how to create SEO friendly URL with dynamic content using PHP and .htaccess mod redirection. Friendly URLs improves your site search engines ranking. Before trying this you have to enable mod_rewrite.so module at httpd.conf. It
