Use Any Font on Your WordPress Blog with AnyFont WordPress Plugin
Recently I came across a relatively young WordPress plugin that allow WordPress users and designers to use basically any TrueType font you have on your computer on your WordPress blog, replacing post titles, widget titles, links and so on with automatically generated SEO-smart images using your desired font. The plugin is called AnyFont and it has been developed by Ryan Peel
The generated images have a very good level of clarity, way better than the classic SWF replacement and the plugin is really easy to administrate and customize.
Click here to read the full blog post!
Free WordPress Themes Watch: Empty Canvas
My friend Adrian Diaconescu has released a new free WordPress theme called Empty Canvas. Those familiar with his previous theme, Corporate Sandbox will observe the similarities between these two themes, but as Adrian says: “[...] don’t download this theme and expect the Mona Lisa. It’s only a simple theme, that does wonders for me.”
Click here to read the full blog post!
10 Beautiful Non-Blog Websites Powered by WordPress
The time when WordPress was used strictly as a blog platform is long gone. WordPress has evolved into a mature CMS that gives designers and developers the right tools to create amazing non-blog websites for their clients. As proof for that stand these 10 beautiful websites powered by WordPress.
FernWoodCoffee.com
Herout-Caves.com
New WordPress Plugins You Might Want to Try
While working on a couple of WordPress projects these days, I’ve been on the look out for some new WordPress plugins. During my searches I’ve come across some really cool and useful plugins that you might want to check out too.
Manual Related Links
Tired of the old and sometimes irrelevant automated “Related posts”. This new WordPress plugin allows you to hand pick the links to be displayed at the end of your posts. Also works with off site links. Some might think that it’s a waste of time, other like me will see the value in giving the reader really relevant, hand-picked links.
Download hereWP Version: 2.7+
Author: Aaron D. Campbell
WP htaccess Control
No need to access the FTP or the cPanel anymore to add rules to your .htaccess file. With WP htaccess Control you get to do that from the comfort of your WP Admin screen.
Download hereWP Version: 2.7+
Author: António Andrade aka Dardna
Click here to read the full blog post!
I Need Your Translation Skills!
Hey friends, as you might have noticed, yesterday I’ve released the 1.2 version of the Latest Posts by Category WP Plugin. As the time was short and the update was needed, I decided to leave the localization of the plugin for the next update.
As I’m typing this, the plugin is set to English as default, and I’ve already created the Romanian translation file.
How can you help?
If you’re proficient in any other languages than English and Romanian – like Spanish, French, German – and you’re willing to give me a helping hand in translating 19 short phrases, contact me via email. Tell me which language are you willing to help with and I’ll send you a text file with the required translations.
Not to be picky, but native speakers would be preferred, as each language has its own little tricks.
Each translator will receive a link to his/her website on the plugin download page and in the info files in the download package.
Already in the works: Croatian, German, Spanish, French, Bulgarian.
Thank you!
Things You Can Do To Help WordPress Developers
Today I’ve exchanged a few emails with one of Simple Balance’s users which made me think about several things that users could do to help out WordPress themes and plugins developers.
This article is written purely for the purpose of giving you an idea on how to give back to those that invest time and knowledge to give your free quality WordPress resources.
So, here are a few things you can do to help them out:
Offer to test out their themes and plugins
If their project is still in Beta stage, ask to join the testing group or register we’re this is permitted. Test out the product in whatever environment you have available and report bugs and unusual behavior to the designer / developer. They are only humans and most of the time work on too many project and might miss out things, being so closely involved in the project. An outsider could observe things that they can not.
You can also test the projects after the official release. Help is welcome anytime.
Click here to read the full blog post!
WP Plugin: Query Posts WordPress Widget
Justin Tadlock has recently released on cool little WordPress plugin that works miracles for those with little PHP knowledge. As the name says, the plugin is a visual reconstruction of the query_posts WordPress template tag.
So, what does the plugin do? It basically allows you to setup an infinite number of widgets in you widget-ready theme, widgets that will display posts from your blog, defined in the widget option area. You can display posts with a certain tag, posts from a certain category or published in a chosen month. You can display them in full, excerpt or under the form of a list, and many other really cool options.
Adam Warner has also released a video overview of this nifty plugin that you can view here or on WordPress.tv.
More info on this plugin you can find on Justin’s blog.
And you can download the plugin from WordPress.org.
Note: While PHP knowledge is not required in order to manipulate this plugin, a basic understanding of how the query_posts template tag works would turn out to help.
WordPress Powered Websites – The Real Deal
By now, you should know that I’m a WordPress fan. While most people regard it as a simple blogging platform, some see beyond that and realize that WordPress is a very capable CMS.
While working with it as a website CMS will not allow too many customizations for entry-level developers or users, in the hands of a pro WordPress is ready to perform miracles.
The advantages of WordPress powered websites
There are quite a bunch of advantages when developing websites using WordPress as CMS, but the most important are:
- Productivity – A lot less time spent on development, which guarantees a lower cost and still high quality;
- Ease of use – Both client-side and developer-side. The amount of tutorials, plugins and support groups available out there is a divine gift;
- Updates – The WordPress community is very involved in keeping the project up to date and bug free and the updates are so easy to apply.
It’s enough to run a search on Google and you’ll see how many people praise the power of WordPress but instead of using words, this time I’ll use results.
Click here to read the full blog post!
WordPress How To: Latest Posts by Category Archive
One technique that is most common with WordPress magazine or news style themes is the display of an archive of the latest posts by category, as simple titles or with post excerpts. This is useful for the previously mentioned theme styles, but not only. It can be used to set up custom blog homepages, 404 pages, landing pages or even a special archive page.
This tutorial will help you build a ‘Latest Posts by Category Archive‘ in a very easy way. The widths in the CSS styling presented below have been calculated based on the default WordPress theme, assuming that is the most common theme available to anyone.
If you are looking for a plugin to generate such an archive, please check out: WP Plugin: Latest Posts by Category Archive.
Setting up the page template
Open up you favorite code editor and create a blank document. Save the document as ‘category-archive.php’ (or any other name you’d prefer) in the default WordPress theme directory (wp-content/themes/default).
The first step is to asign our new template a name and a page-like structure, so based on the default theme’s page template, the code you should paste in your new document is:
< ?php
/*
Template Name: Category Archive
*/
?>
< ?php get_header(); ?>
<div id="content" class="narrowcolumn">
< ?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2>< ?php the_title(); ?></h2>
<div class="entry">
< ?php the_content('<p class="serif">Read the rest of this page »'); ?>
< ?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
</div>
</div>
< ?php endwhile; endif; ?>
<!-- Category Archive Start -->
<!-- Category Archive End -->
</div>
< ?php get_sidebar(); ?>
< ?php get_footer(); ?>
The template above will make sure to display the page name you set up, and also, any additional content you might want to add before the archive, from you WordPress page editor. We will be adding our ‘latest posts by category’ code between the ‘Category Archive Start’ and ‘Category Archive End’ comments.
Click here to read the full blog post!
Free WordPress Themes Watch: Too Newsy
Although not a day goes by without someone putting out there another WordPress theme, days like this one, when I see one theme that truly impresses me, don’t come that often. On January 26th, Performancing.com, in collaboration with Sophia Lucero, launched the “Too Newsy” free WordPress theme, and this is one theme you should definitely check out.
Click here to read the full blog post!


