Browsing by Category:

Tutorials

Whether you’re a WordPress newbie or a plugin rockstar, we’ve got you covered with excellent how tos, useful tutorials and great reference resources here at WPMU.org.

Just ‘Like’ us on Facebook, follow us on Twitter or subscribe by email or RSS and we’ll help you build the perfect WordPress site.

Move WordPress database to a new domain name or directory for free

If looking for a more thorough walk-through of moving files and databases from server to server, visit Migrating WordPress to a New Server.
In case you’re interested, you can also move between WordPress.com and WordPress.org.
Several years ago, I did a WordPress install at domain.com/blog and had a static homepage (i.e. not served up by WordPress). I’m not going to tell you that you should or shouldn’t do that. I’m going to tell you how to go from one to the other. For me, I moved WordPress from /blog to /.

But I was concerned about the database and my URLs. 2 key points:

WordPress Search and Replace Database

Read more »

Beginner’s Guide to WordPress Menus

WordPress offers an excellent way to manage your site’s menus, but it may not be apparent when you first install your site. In fact, a fresh installation doesn’t use the easy menu system at all–you have to hook that up yourself. Follow along as I show you the menu system basics and how to start using it on your new site.
Watch and learn

Working with the original WordPress menus

Beginner's Guide to WordPress Menus-Two men confused while reading French menu

Read more »

How to add Navigation Menus to your WordPress Theme

WordPress menus for everyone
Global navigation menus became much easier to manage when WordPress version 3 added a snazzy menu manager–no plugin or JavaScript required. Every now and then, you may want to use an oldie-but-goodie theme that has not been updated to support WordPress menus. I’ll show you how to easily add menu support to these older themes.
Some old themes still have punch

WordPress Menus-Title photo of coffee shop menu

Read more »

3 WordPress Animation Tricks with animate.css

Have you ever wanted WordPress animations to spice up your website with some subtle effects? The freely-available animate.css toolset can help you make it happen in most decent browsers–and won’t break things for older browsers, either. Check out the general animate.css demo, and then learn how to use it to add some hop, skip, and jump to WordPress!
Essential first step for WordPress animate.css
I’ll show you different ways to animate your web content. No matter which ways you use, the first step is the same: include the “animate.css” file in your site’s “head” area.
Download the animate.css files and unzip

Animate WordPress-image of WordPress logo over title sequence storyboard

Read more »

Everything You Ever Needed to Know About WordPress Settings

The settings panel is one of the most overlooked sections of a WordPress installation, and for good reason – WordPress works so well out of the box that you don’t need too much customization to get up and running quickly with your new site. But, with just a few simple tweaks to your WordPress settings panel, you can enhance your site’s look, make it easier for viewers to leave comments, and even enhance your site’s search engine optimization.

WordPress-Settings-Graphic-featured

Read more »

WordPress for Mac: How to Install Locally with MAMP [Tutorial]

Any WordPress developer should have a local version of WordPress installed on their PC or Mac. Even if you are only a bit of a tinkerer, an offline environment is a much better place to do your work.

Why? Many reasons, including:

It’s great for testing
You can have as many installations as you like
It is a lot faster
You can experiment with design/functionality changes at no risk
There is no danger of the site being inadvertently indexed by Google

WordPress for Mac: How to Install Locally with MAMP [Tutorial]

Read more »

How to Add a Delete Button to the WordPress Admin Bar

I came across this nice little piece of code recently at wpengineer.com. It adds a Delete button to your WordPress Admin Bar when you’re on a single post page. This lets you easily delete a post from your front end – very handy for some sites that end up doing a lot of deleting for one reason or another.

To use this, enter the following code into your functions.php file.  (Appearance > Edit > Theme Functions – functions.php)
function fb_add_admin_bar_trash_menu() {
global $wp_admin_bar;
if ( !is_super_admin() || !is_admin_bar_showing() )
return;
$current_object = get_queried_object();
if ( empty($current_object) )
return;
if ( !empty( $current_object->post_type ) &&

delete-small

Read more »

8 Simple WordPress Security Measures For The Beginning User

No matter how new or experienced you are with WordPress, it’s never too early or too late to get serious about WordPress security. Not taking care of WordPress security is like having a lock on something and leaving the key in the lock. Today we’ll discuss ten things that everyone – even new users – can do to increase WordPress security on their websites. While this is not everything that can be done to secure a WordPress website, all of this can be done by the newest user.

Things To Do When You Install

WordPress Security Locked Up

Read more »

How to Find Your WordPress Database Name

If you’ve ever had the need to find the name of your WordPress database, then there’s an easy way to do that – simply look for it in your wp-config.php file located in the root folder of your WordPress install.
Accessing Your WP-Config.php File
If you are doing something where you need the name of your database, then I’m assuming you have access to your server.

Simply go to the main folder of your WordPress install and locate the file called wp-config.php.

 

Open that file by clicking “View” or “Edit” or however your system lets you see the file.

database-name

Read more »