Archive for Wordpress
One of the both better and more annoying factors of WordPress is the huge amount of core features. Of course it is great to work with a platform which makes almost everything possible but this can also take away from your focus.
I am a big fan of taking out clutter, focusing on what really matters and love to simplify both life and working environment. The WordPress dashboard is well thought out, and popular, but I am the first one to launch an external writing application such as OmmWriter or WriteRoom, helping me focus just on content, especially when writing longer entries. For many smaller projects I am involved in, I prefer ’simpler’ platforms than WordPress, platforms focusing more on blogging rather than on being the awesomest, most complete or extendable platform.

Enter Zen, a distraction free writing environment for WordPress.
If you’re a fan of ‘anti-clutter’ plugins such as simple email notifications, you’ll love Zen for WordPress. More even, if you would have been on the verge of switching to a more writing focused platform such as Habari but on could not decide to ditch WP yet, Zen might be what you are looking for.
If you’re a fan of WriteRoom, OmmWriter, or similar tools that help you focus on your words instead of the tools you’re using, this plugin will soon make your wildest dreams come true (and give you a simple clean environment within WordPress to write to your heart’s content)! While Zen does not replace the existing Edit Post/Page screen, it provides a layer on top that will help you focus more on the quality of your words and less on the distracting fine-tuning of minuscule details.
Zen does not replace your editor or change the look of your dashboard but in the post editor you now can activate Zen with one click and call up the new layer. You can even set ‘Always write in Zen mode’ as standard (in Your Profile).
Zen comes with several themes (which can be selected in Your Profile) making Zen a little more noisy again but you don’t have to use these.
All in all Zen’s a nice and agreeable addition to WordPress and a new recommended plugin for me. Download Zen from the plugins directory or install it within WordPress (search the plugins repo for Zen).


VN:F [1.8.2_1042]
Rating: 0.0/5 (0 votes cast)
VN:F [1.8.2_1042]
We’re often asked when we plan to make our intelligent proofreading technology available for more languages.
We’ve been hard at work and today we’re announcing After the Deadline proofreading for French, German, Portuguese, and Spanish.

These languages feature After the Deadline’s smart contextual spell checking. We’re also using a great open source project called Language Tool to check French and German grammar.
If you’re on WordPress.com and your blog language is set to French, German, Portuguese, or Spanish–you’re ready to use our multi-lingual proofreader.
Click
in the visual editor or
in the HTML Editor.
We realize many of you blog in multiple languages and we have not forgotten you. Visit your WordPress.com profile page and select Use automatically detected language to proofread posts and pages.

With this option enabled, our proofreader will guess the language of your blog post and apply the correct proofreading technology for that language.
The WordPress.com Proofreading technology is available as the After the Deadline plugin for self-hosted WordPress blogs.
Enjoy.

VN:F [1.8.2_1042]
Rating: 0.0/5 (0 votes cast)
VN:F [1.8.2_1042]
Today I finally found time to fix the free directory on crosshairs.net, Please stop by and submit your wordpress related website – Wordpress Directory
VN:F [1.8.2_1042]
Rating: 0.0/5 (0 votes cast)
VN:F [1.8.2_1042]
Do you sometimes get that feeling to go all overboard and do things differently with your design? OK, I might not be the most creative person with visual designs, actually I like simplicity, but the fact was that I recently switched to a single-column design for my own WordPress blog.
With simplicity, and single-column design, came the following problem: ‘How to implement a smart navigation?’ Important is to understand my blog: iFranky is a mix of several topics and is both my brand and a personal space to write about life as well as a tumblelog and collection of interesting entries I wrote on other blogs. The readership is a mix of friends, bloggers, clients and students I lecture about blogging and social media. This leads to a mix of different topics, but not all are worth to be displayed on the home page.
The main navigation factor is based on the categories, categories I used in previous designs iterations to display multiple loops on the home page or to implement different backgrounds.
Simplicity meant that my complete navigation would be send to the footer, an often overlooked design element (There is no fold), even the header navigation.
Because my main page only shows the main entries, I somehow had to integrate a category list in the footer but who wants to add one column of more than 15 categories or a drop-down? Trust me when I say that I have analysed click behaviour and barely one bothers with these often sky-high columns or drop-downs. The solution: display your category list in columns.
Code to Display Your WordPress Category List in Columns
For this tutorial we are going to display the categories in 5 columns. First we need to define all values for the array.
<?php
// Grab the categories - top level only (depth=1)
$get_cats = wp_list_categories( 'echo=0&title_li=&depth=1' );
// Split into array items
$cat_array = explode('</li>',$get_cats);
// Amount of categories (count of items in array)
$results_total = count($cat_array);
// How many categories to show per list (round up total divided by 5)
$cats_per_list = ceil($results_total / 5);
// Counter number for tagging onto each list
$list_number = 1;
// Set the category result counter to zero
$result_number = 0;
?>
We use wp_list_categories to grab the category list, displaying only the top categories (depth=1).
In line 9 we put how many columns we want to generate, five in this example. To limit everything to full numbers ceil is used to round up.
Now we are going to output this list and also add auto-generated classes for CSS styling to the code.
<ul class="category_footer_post" id="cat-col-<?php echo $list_number; ?>">
<?php
foreach($cat_array as $category) {
$result_number++;
if($result_number % $cats_per_list == 0) {
$list_number++;
echo $category.'</li>
</ul>
<ul class="category_footer_post" id="cat-col-'.$list_number.'">';
}
else {
echo $category.'</li>';
}
} ?>
</ul>
We can now easily style following with CSS: #cat-col-'.$list_number.' with '.$list_number.' being the… you guessed it, the number of your column.
Because every column will have its own number, do not forget that you will have to style all columns (#cat-col-1, #cat-col-2, #cat-col-3, #cat-col-4, #cat-col-5).
The Result

This awesome bit of code thanks to t31os_.


VN:F [1.8.2_1042]
Rating: 0.0/5 (0 votes cast)
VN:F [1.8.2_1042]
After the festive season the dev crew has released an update for WordPress 2.9. WordPress 2.9.1 is a bugfix release and contains no new features. If you have waited updating to 2.9, now is the time to upgrade as most issues have been resolved.
Issues with scheduled posts should be resolved and the same applies to feed parsing errors in the admin dashboard. Update your blogs now via the build-in updater or download the latest WordPress update now.


VN:F [1.8.2_1042]
Rating: 0.0/5 (0 votes cast)
VN:F [1.8.2_1042]