Archive for the ‘ Wordpress Tips ’ Category

Home > Web Development > Wordpress Tips

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..

WordPress Rich Text Editor not Appearing – Solved

Having problem with rich text editor in WordPress dashboard? Tried reloading the files from the .zip up to your FTP site, but with no luck?. Here is the solution, i hope it may fix your issues faced in WordPress. Method 1: Try adding the following to your wp-config.php define(‘CONCATENATE_SCRIPTS’, false );  or define(‘SCRIPT_DEBUG’, true); Method [...] Read more..

Redirecting from home page to post/pages error in WordPress 3.0 – [Solved]

Before a week, I upgraded my word press blog from version 2.8.4 to 3.0 versions. After upgrading, i faced some 301 redirection issues i.e., once I publish new post or page, home page will automatically redirects me from home page to new post/page. I Google around the websites for the solution nearly for 2 days. [...] Read more..

Best 8 upgrades in wordpress 3.0

There are some great new features coming, including custom post types, a new default theme, and a menu manager. Read on to find out what to expect in version three! 1. Choose your Username and Password You’ll encounter new features as soon as you start! Currently, when you first install WordPress, you are assigned a [...] Read more..