banner ad

Author Archive: anki

rss feed

PHP Framework video Tutorials

| November 29, 2011 | 0 Comments

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

Continue Reading

Tree Menu Model using javascript

| August 25, 2011 | 0 Comments

Description: This is a unobtrusive Tree Menu script that turns any ordinary list (UL element) into a collapsible tree! Once transformed, the original list and its sublists can be collapsed/expanded at will, with cookies used to op

Continue Reading

List WordPress Popular Post Without Plugin for theme development

| August 18, 2011 | 0 Comments

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(&

Continue Reading

Getting wp Tag Cloud in WordPress Theme Development

| August 18, 2011 | 0 Comments

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’);</

Continue Reading

Listing wp-pages in WordPress Custom theme Development

| August 18, 2011 | 0 Comments

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

Continue Reading

WordPress Theme Development useful Template Tags

| August 18, 2011 | 0 Comments

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.

Continue Reading

How to customize facebook page

| June 4, 2011 | 0 Comments

Comming Soon

Continue Reading

SEO Friendly URLs with PHP

| April 8, 2011 | 0 Comments

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

Continue Reading

banner ad