Archive for the ‘Blogging’ Category

WordPress 2.7 Admin Bar

Tags: Blogging, Tutorials | No Comments »

Recently we upgraded Goelji.com to WordPress MU 2.7. And, along came someWPMU-admin-bar

In WordPressMU 2.7 there is a new admin bar. It has settings so users can see it on the admin panel side if they are logged in, and a wonky bit to switch between blogs that may have a few bugs.

For any reason if you don’t want it then here’s how to disable it.

Go to wp-config.php (you will get it where you installed WordPress MU). Edit it.
Find the following lines in wp-config.php


// Uncomment to disable the site admin bar
//define( ‘NOADMINBAR’, 1 );

Now, uncomment the second line i.e. remove those // in front of the word “define”?
That’s it. BINGO!

In a freshly installed copy of WPMU 2.7, you’ll find these lines in wp-config.php when WPMU is up and running.
In case of upgraded WPMU 2.7, check the config-sample.php and make sure you copy these lines into your existing wp-config file.

Tags: , , , ,

How to display Author info in Wordpress Single Post

Tags: Blogging, Tutorials | No Comments »

If you view a single post of a blog, you will see the author information at the bottom. Here we will see that how we can display such author info in a wordpress blog. That info can be edited in the control panel under Users->Your Profile.

The author’s photo can also display the image using avtars:

<img src="<?php echo get_option('home'); ?>/wp-content/themes/mimbo2/images/<?php the_author_lastname(); ?>.jpg" alt="" />

The author’s name is called like this:

<?php the_author_posts_link('namefl'); ?>

The author’s bio is called like this:

<?php the_author_description(); ?>

The author’s email is called like this:

<a href="mailto:<?php the_author_email(); ?>" title="Email this author">Email this author</a>

That seems like a pretty good start for building your own template themes. Now it’s up to the client to hire some talented writers and hope for the best.

Tags: , ,

Showing category specific wordpress posts

Tags: Blogging, Internet, Tutorials | No Comments »

Displaying category specific posts in a wordpress blog is easy. Inside theme folder the you will find “index.php” and “sidebar.php” templates, you have to put a query_posts functions which refer to specific category ID numbers from your database. Example:

<?php query_posts('showposts=1&cat=4'); ?>

You will need to change them to reflect the ID numbers in your own database. They can be found in your control panel under Manage->Categories.

idnumbers1.gif

Result will be the recent posts from the category no.4

Tags: ,

Sneak Peak to new upgraded Wordpress 2.5 RC1

Tags: Blogging | No Comments »

Yesterday, on wordpress development blog matt announced the launch of much awaited upgrade to WordPress after months of their hard work. As matt says “The result is a new way of interacting with WordPress that will remain familiar to seasoned users while improving the experience for everyone.”

Wordpress Dashboard Pic

New customizable dashboard is “focused on the most relevant tasks”

New navigation in “new design” separates the navigation bar into two namely primary functions and secondary functions, thus, reduces the “number of navigation options in half”.

Pic of New write section in wordpress

Some other life saving functions are like “multi-file upload, built-in galleries, one-click plugin upgrades, tag management, built-in Gravatars, full text feeds, and faster load times sound interesting”. All these will reduce a lot of burden from self hosted bloggers.

If you make frequent backups and you’re interested in helping us out with development by testing the new code, download and install Release Candidate 1 of WordPress 2.5

As they say personally they can’t wait, i have to say that Blogger’s Paradise is now proudly powered by WordPress 2.5.

Tags: , ,