Dynamic Web Lab

Add Adsence in your Thesis theme sidebar

This is a really easy to add Adsense into your Thesis blog sidebar without manually doing it or using a plugin. Just put this code in your custom_functions.php [php] function adsence_code() { ?> <div id="adsence"> //your adsence code is here </div> <?php } add_action(‘thesis_hook_after_multimedia_box’, ‘adsence_code’); [/php]

Read More

Create a popular post widget without plugin

In one of my wordpress project i need to create a wordpress popular post widget.Now i am giving the code to you.This code will show a list of most commented  post  without using a plugin.See the php code below. [php] <?php // POPULAR POST WIDGET class show_popular extends WP_Widget { function show_popular() { $widget_ops = […]

Read More