Recent Articles
Jquery for Beginners
jQuery is a library of JavaScript Functions. jQuery is a lightweight “write less, do more” JavaScript library. The jQuery library contains the following features: HTML element selections HTML element manipulation CSS manipulation HTML event functions JavaScript Effects and animations HTML DOM traversal and modification AJAX Utilities Enabling of jquery on your webpage <head> <script type="text/javascript" [...]
jquery interview questions for freshers
What is jQuery? jQuery is a JavaScript library that simplifies JavaScript and AJAX programming. JavaScript is used to add interactivity and dynamic content to web pages. AJAX (Asynchronous JavaScript and XML) is used for hand
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 p
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.