Posts Tagged:Wordpress

Compress WordPress output and speed your blog’s load speed
Read More... | Comments Off

WordPress, by default, comes uncompressed and sends the uncompressed HTML to the visitor’s browser. With one line of code added to your header, you can compress WordPress’s output by up to 75%. By using zlib compression technology, you can harness the power of PHP and reduce your blog’s load speed! First, place the following code [...]

12 Useful WordPress Hacks
Read More... | Comments Off

WordPress is not only a great blogging tool but a great content management platform that provides a lot of ways to let you hack into into its functionality to make it do whatever you want. Here are 12 lesser known wordpress hacks/ tricks that you might find useful for your next WordPress related project. Most [...]

10 Incredibly Useful WordPress 2.8 Tutorials
Read More... | Comments Off

WordPress 2.8 was released yesterday and it has a long list of new features, fixes and enhancements. Here’s a round up of 10 incredibly useful tutorials to learn about how to use the new functionality and enhancements of WordPress 2.8 1. Build a WordPress 2.8 Widget with New Widget API – WPEngineer WPEngineer Michael Preuss [...]

The Ways To Make Your Blog’s Comment Form Stand Out
Read More... | Comments Off

WordPress comment form is usually the left out portion of most blog designs. Most blog designers do not care to make the comment form unique and stylish but just create it in a hurry. Here are 10 ways with examples to make your blog’s comment form stand out from the crowd. 1. Change the Layout [...]

Show WordPress post attachments
Read More... | Comments Off

To achieve this recipe, just paste the following code anywhere in your post.php file and attachments will be displayed. $args = array( ‘post_type’ => ‘attachment’, ‘numberposts’ => null, ‘post_status’ => null, ‘post_parent’ => $post->ID ); $attachments = get_posts($args); if ($attachments) { foreach ($attachments as $attachment) { echo apply_filters(‘the_title’, $attachment->post_title); the_attachment_link($attachment->ID, false); } }

Top 10 WordPress Hacks

How to: Show parent page title regardless of what subpage you are on Let’s start with a nice code for those using WordPress as a CMS: Just paste it anywhere on your theme files and it will display the parent page title. <?php if($post->post_parent) { $parent_title = get_the_title($post->post_parent); echo $parent_title; } else { wp_title(”); } [...]

15 Resources For A E-Commerce Site with WordPress

WordPress is a popular blogging platform and content management system, but it can also be used for powering e-commerce websites. Although its primary purpose is not e-commerce, there are a number of plugins and themes available that will allow you to use WordPress for your online store (some are free and some are premium). In [...]

12 WordPress CMS Plugins
Read More... | Comments Off

Pods CMS  Flutter   WP-CMS Post Control   PageMash      Role Scoper     CForms II     Scissors     TinyMCE Advanced     Side Content       Multi-level Navigation     Dashboard Pages      Custom Admin Branding

10 WordPress Plugins To Increase Your Search Engine Ranking
Read More... | Comments Off

A good search engine ranking will generates more organic traffic to your site.If you are using WordPress, don’t worry. WordPress already did the hard part for you. But, there are some SEO features that aren’t implemented in WordPress core. You can easily archeive these features by installing plugins. It is totally up to you that [...]

WordPress Multi Languages: 5 Plugins To Build A Multilingual Website
Read More... | Comments Off

If you are using WordPress as a CMS, then you probably want to present your content with multiple languages. Recently, I came across a WordPress blog that presents their content with three different languages, so I decided to investigate the methods and plugins to turn WordPress into a multilingual website, and share my findings with [...]

WordPress Web Optimization: 15 Tips And Plugins To Monitor, Speed Up And Optimize Your WordPress Blog

Bloggers can actually optimize their blogs to consume less server usages and less bandwidth. There are different ways to do the web optimization for WordPress, for example you can install plugins to monitor, tweak and speed up the loading speed of your WordPress blog. Besides installing the plugin, you can tweak your theme and remove [...]

WordPress Paid Premium & Free Themes

Free Themes  Irresistable This theme kind of combines some grunge elements with the popular glowing light effects for a cool final result. Magazeen These trendy colors and unique layout make this theme a real attention grabber.   Compositio Here is another simple personal theme that has lods of creativity to it, with minimal effects.   [...]

30+ Helpful WordPress Tricks And Hacks

As an experienced WordPress user, we keep ourselves updated with the development of the core, plugin releases and useful WordPress tips and tricks shared by developers and enthusiasts. In today’s post, we’d like to share with you updated WordPress tips and tricks and plugins that are interesting and useful. Without further ado, here’s another 30+ [...]

WordPress Typography Plugins To Enhance Readability
Read More... | Comments Off

WordPress has pretty decent typography features in the core installation. But there are plenty of areas ripe for improvement. That’s where the plugins below come in. Whether you just want more control over how the basic text on your site shows up or you want to do something a bit more advanced, there’s surely a [...]

Top 100 Free WordPress Themes

In this article we present 100 free high-quality WordPress themes. Together with hundreds of other designs, these themes have been manually selected, installed and tested over the last weeks. They all can be downloaded, customized and used for free in both personal and commercial projects. Links to demo-versions provide a direct preview of a theme. [...]

10 code snippets to interact with Twitter

1 – Autofollow script (PHP) This code allow you to automatically follow user who have tweeted about a specific term. For example, if you want to follow all users who tweeted about php, simply give it as a value to the $term variable on line 7. <?php // Twitter Auto-follow Script by Dave Stevens – [...]

12 Useful WordPress plugins for developers

 I allways publish wordpress plugins ,Today ,I focus on 12 plugins that is really useful to create a developer blog.I hope you are like. Preserve Code Formatting Have you ever tried to display code snippets in WordPress? If your answer was "yes", I’m pretty sure you had trouble to do so, at least during your [...]

24 Helpful WordPress Security Plugins and Some Tips and Tricks
Read More... | Comments Off

After putting in all of the time, and perhaps money, into your WordPress website or blog, its now time to secure and protect it from outside enemies and general bad guys: hackers, spammers and all round tossers. If your WP development knowledge is limited, your best option is to download and install plugins. They are [...]