Archive for the ‘ Wordpress Tips ’ Category

Search

Categories

Archives

echo the_post_thumbnail url [Solved]

This article tells how to echo the value of URL of the image which defined as <?php the_post_thumbnail() ?>. So far,  <?php the_post_thumbnail() ?> executes the complete image. But, most of them required to echo the only URL. Below code will echo the value of the URL of the image. <?php echo wp_get_attachment_url( get_post_thumbnail_id( $post->ID ) );?> [...] Read more..

How to remove linkwithin widget in WordPress Multisite

As i am a WordPress developer,  customizing more themes even plugins to my clients with specified features. Before a month, i had a affection with Multisite Development.  Just had a research with it and i finally end with few implementations. Multisite is a really cool feature which was introduced by WordPress before few versions of theirs. Nowadays, most [...] Read more..

Show related posts without a plugin

<?php $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’=>1, ‘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; wp_reset(); } } ?> Read more..

How All in One SEO Pack Helps

WordPress is a very recommendable platform for blogging. No doubt about it! Yet, there are some measures that you can take to improve your search engine rankings and get even better search engine results. The installation of “All in One SEO Pack” is a great boost to the SEO efforts in your blog and I [...] Read more..

WordPress 3.0.2 Released, Mandatory Upgrade

WordPress 3.0.2 is available and is a mandatory security update for all previous WordPress versions. Haiku has become traditional: Fixed on day zero One-click update makes you safe This used to be hard This maintenance release fixes a moderate security issue that could allow a malicious Author-level user to gain further access to the site, [...] Read more..
Page 1 of 212