Browsing by Category:

Community

A post from the WPMU community

WordPress Coupons and Discount Codes

Premium plugins, themes, and services make up a large part of the WordPress community.

WordPress is the most popular CMS and, as a result, there’s money to be made by developers, designers, and consultants. But, let’s face it, you build websites with WordPress because you don’t want to or cannot do everything yourself from scratch. It saves you time, money, and headache and lets you provide a wider range of services to your website clients or, if you are a DIYer, to your website visitors.

WordPress coupons, discounts, and ways to save money buying premium extensions and services

Read more »

Stay Informed with WordPress.org Notifications

Do you develop or contribute to WordPress? Participate in support forums? As you probably know, a group of official blogs exists for people like you. The “Make WordPress.org” group is home to P2-themed microblogs for the following development areas:

Core
Support
Plugins
UI
Accessibility
Themes
Polyglots
Systems

Keeping your ear to the ground
Some of these blogs can go awhile without seeing any traffic, but you can subscribe to individual “Make” blogs by email and RSS–hopefully ringing your bell when new topics of interest come around.

Just yesterday, August 4th, the team added a new way to keep your ear to the ground. Dubbed “WordPress.org Notifications,” it notifies you:

WordPress Notifications-Girl listening to playground ear trumpet

Read more »

Get the Chrome Theme Sniffer to Detect WordPress Themes

Ever arrive to a site and wonder what WordPress theme it’s using? You can always view the source and check out the theme’s stylesheet, but what if there was an even easier way? Chrome Theme Sniffer is a add-on for Chrome that will detect the theme or template being used on current site for several major open source CMS’s, including Drupal, Joomla and WordPress. All you have to do is click the Theme Sniffer button at the top of your browser to get the information instantly, as pictured below:

sniffer

Read more »

Major Changes Coming to the Media Library in WordPress 3.5

The WordPress core development team is already busily preparing for the upcoming WordPress 3.5 release. The media library is due for some major changes. Daryl Koopersmith posted some slides for discussion on the make.wordpress.org blog. Here’s a sneak peak of the wireframes and workflows they’ve got in motion. Be advised that it’s not set in stone yet and not all of this will make it into the release.

Here’s what the new media library may look like:

Here’s what they’re discussing for the experience of uploading multiple files to the library:

media-feature

Read more »

A Complete Guide to the WordPress Visual Post Editor

The WordPress post visual editor makes writing a blog more like a traditional word processing experience with the ability to format text, change colors, align text, indent, and check your spelling and grammar. It’s a step above the HTML editor and allows you to write beautifully formatted posts without writing a single line of code.

Some blogging platforms less sophisticated than WordPress require cutting and pasting text from other word processors, but the WordPress visual editor makes it possible to create entire articles mixed with images, forms, and other html elements.

Typing

Read more »

26+ WordPress Gift Ideas

Today, July 26th, is my birthday. Unless it’s hundreds, thousands, or hundreds of thousands of dollars, there’s nothing I really want for my birthday. At least not traditional stuff like shoes, music, movies, or other items under $50 or $100…
I want WordPress stuff for my birthday

WordPress gift giving

Read more »

New Official WordPress Contributor Group Announced for Offline Organizers

WordPress.org has recently announced a new official contributor group devoted to organizers of in-person, offline WordPress events.

The group is meant to be a place where people like WordCamp and WordPress Meetup organizers can gather to do some of the following …

share ideas and feedback
create connections
get information on policies surrounding official events
work on group projects
get and/or give mentoring
participate in WordCamp video curation for WordPress.tv

On a related note, it seems that a forthcoming centralized WordPress Meetup group is also in the works.

Again, you can check out the group here and get in on the action if you like.

wordpress-event-organizers-small

Read more »

How to Add Custom Post Types to Your Home Page and Feeds

Custom post types are a powerful way to extend the functionality of your website, creating a more personal experience for the viewer, and also the admin. But when you create a new custom post type, it is not automatically added to the site’s main loop. If that custom post type is one you plan to feature on the homepage of you’ll need to modify your theme’s functions.php file.

Luckily, that’s done with just a few lines of code.
Adding Custom Post Type to your Home Page in WordPress
function custom_conference_in_home_loop( $query ) {
if ( is_home() && $query->is_main_query() )

Custom Post Types in Wordpress Loop and Feed

Read more »