Office Address

41/D, West Brahmondi, Narsingdi

Phone Number

+880-1975374887

Email Address

dynamicweblab@gmail.com

WordPress Blank HTML5 theme

HTML5 comes with a lots of feature! Soon we need to use them in WordPress projects. I discontinue my project but here is another great html5 project you can check https://github.com/html5blank/html5blank

Read More

Add floating social icons to Thesis WordPress

In this tutorial i will show you how to add floating social icons to Thesis WordPress .Copy and paste this code for the floating social icons into your Custom Functions. Note: Always take a backup before any type of modification. [php] // Make the URL to share if( is_singular() ) { $url = get_permalink(); $text […]

Read More

Using Loops and Pagination in WordPress

Using loops you can show wordpress content.If you want to show the full content for the first two posts and then just the excerpt for the rest then this code is for you. [php] <?php $page = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1; query_posts("paged=$page&posts_per_page=5"); ?> <?php $count = 1; // Sets count to 1 on first […]

Read More

How to Add Facebook Like Button in WordPress

Facebook button is very useful and it help  you to grow website visitor. First open your single.php or post.php  file in your theme’s folder. Then paste the following code before or after the_content() inside your post loop: [php] <iframe src="http://www.facebook.com/plugins/like.php?href=<?php echo urlencode(get_permalink($post->ID)); ?>&amp;layout=standard&amp;show_faces=false&amp;width=450&amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:25px"></iframe> [/php] If you want to […]

Read More

Best plugin collection for wordpress template developer

Akismet Possibly the best way in the world to protect you from web spam. All In One SEO Pack Optimizes your WordPress blog for Search Engines. Inline PHP The plugin can execute php string in posts/pages, and display the output as the contents of posts/pages. PHP Code Widget The normal Text widget allows you to […]

Read More

Blank WordPress Theme

The main purpose of this Blank WordPress Theme  to make your WordPress theme development time shorter. The main features of Blank WordPress Theme (version 1) are: The sidebar is widget-ready. Loads google hosted jQuery. Registers the sidebar widget area. Has CSS reset. Theme option page. Post Thumbnail support. Lightweight only 15KB. The new version 1.5 […]

Read More

Create a css3 dropdown menu in wordpress

In this tutorial i will show you how to create a apple style css3 drop down menu in wordpress.Ok lets start, at  first i use this code to create navigation in wordpress. Paste this code in your header.php [php] <div id="navigation" > <ul id="nav"> <li><a href="<?php bloginfo(‘siteurl’); ?>">Home</a></li> <?php wp_list_pages(‘title_li=&sort_column=menu_order’); ?> </ul> </div><!– #navigation –> […]

Read More

How to Create Recent Posts with Thumbnails in WordPress

There are some plugins for Recent post but i love the coding way.Just paste this code in your side bar. [php] <h3><?php _e( ‘Recent Posts’ ); ?></h3> <?php $the_query = new WP_Query(‘showposts=5&orderby=post_date&order=desc’); while ($the_query->have_posts()) : $the_query->the_post(); ?> <div class="latest_post"> <div class="image_holder" > <?php the_post_thumbnail(array(50,50), array (‘class’ => ‘alignleft’)); ?> </div><!–#image_holder–> <div class="recent_description"> <h4><a title="<?php the_title(); […]

Read More

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