Beautiful WordPress Themes for Female Blogs

The concept of aesthetic sophistication of women than men so much, that's their privilege. For women, in my opinion, the design does not require too important to their blogs, what they concern is the color and layout content feminine or not? They do not care much to new technology, design style and new trend ....

Pinky Kupy

Pink Kupy 1.0. A 2 column, fixed width theme, widgets not supported unfortunately. Download Pinky Kupy

Pink Kupy

Pink Kupy

Continue reading...

How to List most recent comments and recent post on your wordpress themes

Installing too many plugins will make the wordpress blog work slowly and unstable, use code built in your theme will reduce the system resources.

Most recent post and comments

Most recent post and comments

I've known a ton of plugins and widgets that allows me to list recent comments and recent post on my WordPress blog but I'm not using it. Because I've integrated some useful code below then I get results similar to those extensions which I've known.

List most recent comments

<?php
  global $wpdb;
  $sql = "SELECT DISTINCT ID, post_title, post_password, comment_ID, comment_post_ID, comment_author, comment_date_gmt, comment_approved, comment_type,comment_author_url, SUBSTRING(comment_content,1,30) AS com_excerpt FROM $wpdb->comments LEFT OUTER JOIN $wpdb->posts ON ($wpdb->comments.comment_post_ID = $wpdb->posts.ID) WHERE comment_approved = '1' AND comment_type = '' AND post_password = '' ORDER BY comment_date_gmt DESC LIMIT 10";

  $comments = $wpdb->get_results($sql);
  $output = $pre_HTML;
  $output .= "\n<ul>";
  foreach ($comments as $comment) {
    $output .= "\n<li>".strip_tags($comment->comment_author) .":" . "<a href=\"" . get_permalink($comment->ID)."#comment-" . $comment->comment_ID . "\" title=\"on ".$comment->post_title . "\">" . strip_tags($comment->com_excerpt)."</a></li>";
  }
  $output .= "\n</ul>";
  $output .= $post_HTML;
  echo $output;
?>

Continue reading...

Mastering Worpress [gallery] shortcode

From WordPress 2.5, the Gallery feature allows the option to add an image gallery to a Post or Page on your WordPress blog.
Upload all your photos and simply type the shortcode [gallery in a post or page to display a thumbnail gallery of images attached to that post or page. Clicking on a thumbnail image will open either the original image or a larger image in a separate Attachment page.

Continue reading...

Using WordPress plugins to make your website mobile friendly

In some previous post, you has been known how to convert your website mobile friendly with online services and common problems when creating a website for mobile devices.

Using WordPress plugins to make your website mobile friendly

Using WordPress plugins to make your website mobile friendly

WordPress is a very popular PHP based Open Source blogging tool. By installing mobilizer plugins, your wordpress blog becomes mobile friendly, and all your previous blog postings become immediately mobile-accessible with a minimum effort on your part. Below is amazing Plugins to view your WordPress Blog on any Mobile Device (iPhone, PDA…).

Continue reading...

WordPress v2.9 allow you edit images directly

Wordpresscomments

Although Wordpres v2.9 not released but it has revealed a number of area features in the next version.
One highlight feature is to allow administrators can edit images uploaded with a few simple tasks such as resize, rotate images, ... Images of this feature is not officially be announced, I found it on few small website.

WordPress Image Editor

WordPress Image Editor

It has long been known that WordPress 2.9 will add some features for image editing - the users want these features, right in the core and not as a Plugin. You can get a first insight into the current development version.
The following screenshot, courtesy of WP-Engineer, confirms this:

WordPress Image Editor with images

WordPress Image Editor with images

Though the image editing tools are pretty basic, it is an excellent start and will definitely be very useful for bloggers who use images very frequently.

Continue reading...

Build full multilanguage website with WordPress

Multi-language Website

Multi-language Website


Good CMS (not all) let you create and manage contents in multiple languages. It’s not trivial. Many things need to change when a site runs in multiple languages. The system needs to handle all sorts of strange cases and make it all seem like a piece of cake.
Many web sites need to be developed in several languages. Multi Language web site development is a specialized skill. This is because it throws up various issues like:

  • Speed - How can you provide a customized user experience without decreasing the speed of the web application?
  • Translation - How can you translate all the content of the web site into the different languages you would like to offer?
  • Font Support - How do you make sure that your visitor's browsers support the fonts you will use.
  • Cost - How can you achieve this objective without multiplying the cost of developing the web site by the number of languages offered?

WordPress is an open platform for high level customization can help you create a multilingual website easily by plugins.

Continue reading...