Latest Posts
Useful WordPress Hacks
Show related post without a plugin
If you want to show related post in you current post , you can use simple way to show. You just need to copy and paste under following codes into single.php file of your theme. This code will display related posts based on the current post tag(s). It must be pasted within the loop.
<?php
//for use in the loop, list 5 post titles related to first tag on current post
$tags = wp_get_post_tags($post->ID);
if ($tags) {
echo 'Related Posts';
$first_tag = $tags[0]->term_id;
$args=array(
'tag__in' => array($first_tag),
'post__not_in' => array($post->ID),
'showposts'=>5,
'caller_get_posts'=>1
);
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<p><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></p>
<?php
endwhile;
}
}
?>
Free IP address geolocation tool
If you are looking for geographical location of an IP address, I would like to recommend you to use IPInfoDB .
This is the free web tool that you can detect geographical location of an IP address.
IP Info DB is offering free services based on their IP address geolocation database.
- Web based IP geolocation lookup
- IP geolocation API (XML, JSON and CSV format)
- API that generate IP CIDR by country for iptables or htaccess blocklist
- E-commerce fraud detection API
- Free version of our SQL database updated monthly!
Collection of Flash Tutorial Websites
Adobe Flash is one of the most popular animation softwares. Flash has supported animation through tweens ( timeline, keyframes ) and ActionScript . I hope this collection would be support to beginner and flash learner. You can learn flash effect, animation and ActionScript form those site. I hope you may enjoy this post.
ိိ
Actionscript.org
Flash Tuts+
Incredible Photoshop Tutorial Websites
If you are looking for photoshop tutorials, you will enjoy this post. In this collection of photoshop tutorial websites, you will find really nice photoshop tutorials. Maybe some of those you haven’t seen before.
PSDFan
Best Photoshop Tutorials







Made by Symmetric Web
Distributed by Smashing Magazine