Read below about related content about show+latest+comments+sidebar+php+wordpress, You can contact us to improve our contents and site quality

Read below about related content about show+latest+comments+sidebar+php+wordpress, You can contact us to improve our contents and site quality

It’s All About Post Thumbnail

December 22nd, 2009 By WP Tricks Posted in Tips

WordPress 2.9 built in new features, like Online Image editor and Post Thumbnail, On this post I will give some information about post that coverage Post Thumbnail, So, if you need to know about Post Thumbnail and add your theme support this featured you should Read on this post

Happy Explore new featured in WordPress 2.9 and have nice holiday ;) I also written some tutorial how to fix TimThumb readfile problem

Amazing Touch

Display Clean Pingbacks and Trackbacks

May 21st, 2010 By WP Tricks Posted in Tricks

Have you ever know, WordPress Comment separated between Pingbacks/Trackbacks and Standard comment. With extra function we can separate this type of comment easily. Example we will display more clean and readable Pingbacks and Trackbacks.

Pingbacks - Kim Smith on Maxim

Clean Pingbacks / Trackback - Kim Smith on Maxim

We’ll need to create functions and call this functions in our wp_list_comments functions. Let’s get started. Open your functions.php and write down this functions

// create clean pingbacks and trackbacks
function GetCleanPings($comment, $args, $depth) {
$GLOBALS['comment'] = $comment; echo '<li>'.comment_author_link().'</li>';
}

Read the rest of this entry »

Amazing Touch

Tiny Tips to Secure your Plugins

May 1st, 2010 By WP Tricks Posted in Tricks

WordPress Themes and WordPress Plugin is the most enhanced method that we can do easily and quickly. But for some reason there are hacker or BAD HABITS from netter, their tried to do something weird on our WordPress website.

Cheryl Cole - Beautiful Security on WordPress Plugins Files

Cheryl Cole - Beautiful Security on WordPress Plugins Files

On today tricks we’ll show you how to secure our plugins files using .htaccess. You only need to put on this code on your .htaccess

<Files ~ "\.(js|css)$">
  order allow,deny
  allow from all
</Files>

Read the rest of this entry »

Amazing Touch

How to Get Most Commented Posts with Thumbnail

January 10th, 2010 By WP Tricks Posted in Tricks

There are so many way to attract visitor on your WordPress blog, the one of them is show most popular post on your sidebar or footer, beside that fact in order to help your visitors finding your best content.

Let’s me share “How to get most commented posts along with their related thumbnail“, This trick need little bit code to be written on your themes files. I will show you how to do this. The first time, open your sidebar.php or footer.php or whatever files with your favorite editor. Then write down this code

<?php $popular = new WP_Query('orderby=comment_count&posts_per_page=5'); ?>
	<?php while ($popular->have_posts()) : $popular->the_post(); ?>
	<?php $justanimage = get_post_meta($post->ID, 'thumbnail', true);
		if ($justanimage) { ?>
	<img src="<?php echo get_post_meta($post->ID, "Image", true); ?>" alt="<?php the_title(); ?>" />
	<?php } else { ?>
	<img src="http://an-alternative-image.jpg" alt="" />
	<?php } ?>
	<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php endwhile; ?>

Read the rest of this entry »

Amazing Touch

Custom Post Type Tutorial Collections

August 27th, 2010 By WP Tricks Posted in Tips

We will show you many Custom Post Type Tutorial Collections from many website, we hope this list will make it more easier for you to understanding new feature on WordPress 3.0

WordPress Custom Post Type -Adriana Lima Victorias Secret Toronto

WordPress Custom Post Type -Adriana Lima Victorias Secret Toronto

If you read each of this tutorial, you’ll understand that WordPress 3.0 more easier to create robust CMS with this tricks. We hope this Custom Post Type Tutorials useful for you project

Photos Egotastic

Amazing Touch