Useful Resourcse to Help You Understand WordPress Theme Structure

Trying to understand how WordPress works can be overwhelming with the tons of resources available online. Below is a compilation of some great resources we’ve narrowed down to help you get your feet wet as you start practicing your WordPress coding skills:


Upcoming WordPress Events – 4QTR 2012

2013 is just around the corner and it’s time to take stock of what you’ve accomplished the past year and what you can look forward to in the next. Keep abreast of the latest trends and participate in any one of these seminars or conferences to brush up on your WordPress, HTML5 and CSS skills to get you ready for 2013. Staying informed not just on WordPress matters alone but also web and business-related matters will keep you two steps ahead of your game.

Here’s a quick rundown of the latest WordPress events and other noteworthy conferences around the globe to help keep you on the cutting edge.

The Events:

  • Event: Pressnomics 2012
    Date: 8 – 10 Nov 2012
    Location: Phoenix, Arizona
    Description: The Economics of WordPress Conference.
  • Event: Visualized
    Date: 8 – 9 Nov 2012
    Location: Times Center Manhattan, New York City
    Description: VISUALIZED explores the evolution of communication at the intersection of big data, storytelling and design.
  • Event: HTML5 Mobile Mastery
    Date: 12 – 14 Nov 2012
    Location: London, England
    Description: Two-day HTML5 Mobile Workshop presented by Skills Matter.
  • Event: Handheld 2012
    Date: 19th Nov 2012
    Location: Cardiff, Wales
    Description: Big Ideas for Small Devices. Handheld is the conference for all things mobile, web and native.
  • Event: WordCamp Orlando
    Date: 1 Dec 2012
    Location: Orlando, Florida
    Description: One of the Largest WordPress Education Events.
  • Event: Trends Plus 2012
    Date: 4 Dec 2012
    Location: London, England
    Description: Consumer Behaviour | Marketing Strategy – A forum for ideas, creativity and a sprinkling of blue-sky thinking.

Building Blocks to WordPress Grammar

The primary reason we learn a language is to be able to communicate more effectively. When we travel to new places or visit countries we’ve never been to before we usually buy one of those 15-minute language translation mini books and stuff them into our pockets, ready to be pulled out at any opportune time. We try to familiarize ourselves with the local translation of useful terms and phrases such as “Hello”, “Good Morning”, “How much?”, “Where’s the restroom?”, and other basic words to get us by. At this point, the primary goal is to understand and be understood. Sentence structure and rules of grammar are not the need of the hour just yet. Learning what these common and necessary basic words and phrases mean is the starting point to building your vocabulary and practicing your communication skills.

Similarly, we can learn to speak the language of “WordPress” by first simplifying our goals. Our goal at the moment is to understand and be understood. The semantics and structures can come later on as we first familiarize ourselves with the language and build our basic vocabulary.

Here are some of the most common words and phrases that you will encounter often as you begin to learn how to speak “WordPress.”

Content Management System (CMS)

A Content Management System, or CMS, is software for facilitating the maintenance of content, but not design, on a web site. A blogging tool is an example of a Content Management System.

WordPress

WordPress is web software you can use to create a beautiful website or blog. It is a free and open source blogging tool and a content management system (CMS) based on PHP and MySQL. It has many features including a plug-in architecture and a template system.

WordPress installation

Setting up WordPress for the first time is is a very simple process and takes less than five minutes to complete. Many web hosts now offer tools to automatically install WordPress for you. There are several installation guides on WordPress.org to guide you through the process.

Hosting Provider

A hosting provider is a company or organization which provides, usually for a fee, infrastructure for making information accessible via the web. This involves the use of a web server (including web server software such as Apache), and may involve one or more related technologies, such as FTP, PHP, MySQL, and operating system software such as Linux or Unix.

Web Server

A web server is a computer containing software for, and connected to infrastructure for, hosting, or serving, web sites written inHTML. The most common web server software on the internet is Apache, which is frequently used in conjunction with PHP, Perl, and other scripting languages.

Domain Name

A domain name is a name used for identification purposes on the Internet. In WordPress a domain name usually identifies a server where WordPress is installed. To make this work, the Internet’s domain name system (DNS) maps the domain name to a server’s IP apress. For example, the domain name example.com maps to the IP apress 192.0.43.10. Many domain names can map to the same IP apress, allowing a single server to run many websites.

cPanel

cPanel is a popular web-based administration tool that many hosting providers provide to allow users to configure their own accounts using an easy-to-use interface.

Site

In the WordPress user interface, a site can simply be the website created by WordPress, or it can be a virtual website created as part of a network by the multisite feature. A site in a network is virtual in the sense that it does not have its own directory on the server, although it has its own URL and it might have its own domain name. In WordPress code the site is the website created by WordPress. If multisite is in use, then the site is the network website and each virtual website is known as a blog.

FTP

FTP, or File Transfer Protocol, is rather predictably, a client-server protocol for transferring files. It is one way to download files, and the most common way to upload files to a server. An FTP client is a program which can download files from, or upload files to, an FTP server. You may need to use an FTP client to upload your WordPress files to your web server, particularly if you use a hosting provider.

HTML

HTML, or Hypertext Markup Language, is the W3C standard language with which all web pages are built. It is the predecessor toXHTML, but HTML is often still used to describe either one. It is often used in conjunction with CSS and/or JavaScript.

CSS

CSS, or Cascading Style Sheets, is a W3C open standards programming language for specifying how a web page is presented. It allows web site designers to create formatting and layout for a web site independently of its content.

PHP

PHP is a recursive acronym for PHP: Hypertext Preprocessor. It is a popular server-side scripting language designed specifically for integration with HTML, and is used (often in conjunction with MySQL) in Content Management Systems and other web applications. It is available on many platforms, including Windows, Unix/Linux and Mac OS X, and is open source software. WordPress is written using PHP and requires it for operation.

MySQL

MySQL is a popular open source SQL (Structured Query Language) database implementation, available for many platforms, including Windows, Unix/Linux and Mac OS X. WordPress requires a MySQL database to store all blog information, including posts, comments, metadata, and other information. WordPress also works with MySQL-compatible databases such as MariaDB and Percona Server.

XML

XML, or Extensible Markup Language, is written in Standard Generalized Markup Language (SGML) and essentially allows you to define your own markup language. XML is extremely useful in describing, sharing, and transmitting data across the Internet. Typically used in conjunction with HTML, XML defines data and HTML displays that data.

AJAX

AJAX is a technique that web pages use to have the server perform certain processing without reloading the web page. For example, when you approve a comment in a WordPress blog, WordPress uses AJAX to change the comment’s status, and you see the change without having to reload the Comments screen.

Script

Script is an automated series of instructions carried out in a specific order.

Theme

A theme is a collection of files that work together to produce a graphical interface with an underlying unifying design for a weblog. A theme modifies the way the weblog is displayed, without modifying the underlying software. Essentially, the WordPress theme system is a way to skin your weblog.

Template

In WordPress a template is a file that defines an area of the web pages generated by a theme. For example, there is typically a template for the header area at the top of the web pages, a template for the content, a template for the sidebars, and so on. The templates are like building blocks that make up the complete web page.

Frontend

The front end is what your visitors see and interact with when they come to your website, www.YourSite.com.

Backend

The back end is the area that authorized users can sign into to ap, remove and modify content on the website. This may also be referred to as “WordPress,” “admin” or “the administration area.”

Sitemap

A site map (or sitemap) is a list of pages of a web site accessible to crawlers or users. It can be either a document in any form used as a planning tool for Web design, or a Web page that lists the pages on a Web site, typically organized in hierarchical fashion.

Perhaps these words are already familiar to you but for those who are taking this WordPress journey with us, a lot of these terms will sound Greek. As you encounter these words over and over again and see how they work in real life situations, your understanding will gradually increase. Everything, like pieces of giant jigsaw puzzle, will eventually fall into place and reveal the bigger picture. In this situation, the sum of parts is greater than the whole. More next week!


Nimble Theme by Elegant Themes

Nimble Premium WordPress Theme is a well balanced theme in a lot of aspects. The theme’s demo displays a combination of colors that is pleasing and attractive to the eyes. Its styling is bold but still effectively leaves makes clever use of white space giving the eyes a place to rest strategically. The overall design is balanced and looks beautiful on large monitors as well as on smartphone displays. It is indeed aptly called “Nimble” as it is flexible enough to adapt to various types of websites.

Nimble’s homepage is deliberately section giving it that clearly defined look. Each section has its own color scheme, effectively transitioning users from one section to the next as they scroll through the page. The top section contains a beautiful, full width slider for showcasing attention grabbing works and taglines. Clicking on a slide takes you to a page that contains details of the featured work or post. This section transitions into another section which can be used to give a bird’s eye view introduction about important information such as the company, mission, vision, product/service summaries or other types of information. This is further enhanced by call to action buttons at the bottom of the boxes that take you to pages where you find more exhaustive descriptions. There is also a section that can be used for special quotes, taglines or announcements. The next sections can be configured to contain recent news and updates, recent blog posts, recent portfolio additions, and even a price table to complete the whole layout. All these customizations can be easily handled via the ePanel Theme Options feature included in all Elegant Themes WordPress themes.

Nimble’s responsive design is quick and impressive. Images and content quickly resize to the width of your browser or the screen size of your handheld device. This means that your visitors can expect a pleasant browsing experience all the time.

More Features:

  • Responsive design
  • ePanel Theme Options
  • Large collection of shortcodes
  • Premade Page Templates
  • Perpetual Updates
  • Secure and Valid Code
  • Browser Compatibility
  • Complete Localization
  • Five Unique Colors
  • Unparalleled Support

Nimble Premium WordPress Theme includes top-notch tech support provided by Elegant themes’ support staff to help you setup your site and get it running in no time.

Nimble Theme: $39 | Demo & Download

The Beginner’s Guide to Learn Almost Everything About WordPress

So you’ve been blogging for quite sometime now and you’ve been posting random personal and business stuff on one of those free hosted sites. Everything has been going on well so far until one day this free hosted site suddenly announces that it is shutting down and all your content including all your contacts, posts and thousands of images will no longer be available after a certain date. Horrors! You now scramble to download every last post you’ve made and backup all your data before the clock strikes twelve or else everything disappears forever. Have you ever had that happen to you?

And then you stumbled upon WordPress. The thing is you know very little about it and so you start googling about it which is also probably why you ended up here and you are now reading this post. You want to know more.

Below are some useful resources to help jumpstart your WordPress journey. These resources are mainly aimed towards the novice or beginner level so WordPress savvy professionals might find some of these a bit elementary. Nevertheless, these references can someday come in handy whether you are a beginner or a true blue WordPress guru. We would also like to ask our readers to join the conversation by leaving a comment, any helpful suggestions or additional resources to add to our list.

For those who are about to begin their WordPress journey, check out these resources we have compiled to help you get started:

Websites to Bookmark

  • WordPress.com – A blog web hosting service (free) powered by the open source WordPress software. A good starting point on how to learn the how WordPress actually works at the backend and also to familiarize yourself with running a WordPress site. You can always upgrade to Premium status once you know your way.
  • wpmu.org – The number one source for WordPress news, tips, plugins, and theme reviews.
  • WPBeginner.com – A WordPress resource site providing quality tips, tricks, hacks and other resources for the WordPress community.
  • Speckyboy.com – Web design magazine that offers tutorials, time-saving techniques, inspiration, and useful resources for the web including WordPress.
  • wp.tutsplus.com – A site dedicated to teaching people how to use WordPress, develop widgets, plugins and themes.

Books to Read

Channels/Videos to Watch

  • WordPress.tv – A visual resource for all things WordPress including tutorials, updates, and the latest news.
  • WordCamp.tv – Presentations, highlights, and behind-the-scenes look at WordCamps around the world.
  • Lynda.com – Online courses and tutorials on anything WordPress.
  • StudioPress.tv – Step by step video tutorials for the Genesis Framework for WordPress.
  • Youtube WordPress tutorials

Authors/Developers to Follow

Straight from the Source

  • WordPress.org – the ultimate source for all things WordPress.

There are so many resources out there and so many tutorials that can help you get started. These are just a few to help point you in the right direction.


Free WordPress Themes 2013: Trends

Free WordPress themes have come a long way since Kubrick. Twenty Ten, Twenty Eleven, and the latest – Twenty Twelve – is the newest Kubrick as far as Free WordPress themes go. Twenty Twelve is the current default WordPress theme.

Let’s take a look at some of the features of this free default WordPress theme:

  • Front Page Template where you can add text, images, video
  • Responsive, Mobile-first Layout
  • Custom ”Open Sans” Font
  • Custom post formats: links, quotes, asides, statuses, images
  • Widgets and No-sidebar layout
  • Custom menu, custom header image, custom background color and image
  • Multi columns
  • Sidebar
  • Flexible width
  • Editor style
  • Flexible header
  • Featured images
  • Full width template
  • Post formats
  • Sticky post
  • Theme options
  • Infinite Scroll

Those are a lot of features coming from a free WordPress theme, don’t you think? And most of these features are what you also get from a lot of Premium WordPress themes. If we use Twenty Twelve as our standard, what then can we expect in 2013, as far as Free WordPress themes are concerned?

  • All of the features listed above will become standard features
  • More Premium-like features
  • eCommerce options
  • Typography options
  • Drag and drop options
  • Page-builder options
  • More Single Page Themes
  • Free themes for email, mobile, etc.
  • HTML5 and CSS3 and adhering to WordPress Coding standards

Many WordPress themes authors, providers and developers give away free themes as samples of their work. These samples, albeit free, are not necessarily inferior to Premium themes being sold in the marketplace. In truth, some of them are even better (or Best – shameless plug). The fact that these free samples are marketing tools to introduce these new authors to the market should be a weighty incentive for them to release high quality products that will catch the attention of WordPress professionals who are always on the lookout for something fresh.


Wedding WordPress Theme 2012 by ThemeFuse

Bring out the bubbly because she just said “Yes!” But wait! Walking down the aisle isn’t that simple nowadays what with all the preparations and planning that has to be done. One of the most challenging things you’ll ever go through in life is to plan a wedding. But what if you had a tool that could help you address all the logistical challenges that go with it? A simple solution is to create a website just for the event that way you can manage certain aspects of the wedding wherever you are.

Many times, coordination and information dissemination can be a challenge as you plan your wedding or even somebody else’s. Just Married Premium WordPress theme is a theme indispensable during wedding preparation activities. This premium WordPress theme is an effective means of communicating the progress of wedding preparation, invitations, attendance, as well as bookings and gift registry. It is also perfect for wedding organizers as they coordinate activities that may be logistically challenging to accomplish.

Just Married allows you to manage information relevant to the wedding. With the theme’s built-in templates, you can post all the information about the ceremony, sponsors, bridesmaids, groomsmen, and the entourage that guests might want to know. You can also post information about the bride and the groom’s story and how the story continues along. Confirming guest attendance is also much easier with Just Married’s RSVP feature. With this feature, guests can fill out the RSVP form to confirm attendance making it easier for the bride and the groom keep track of their budget. The theme also allows you to connect to the couple’s bridal registry pages to their stores of choice making it convenient for guests, whether local or international, to give gifts to the couple. Out of town guests can take advantage of the accommodations feature to book hotel rooms at group discounts set-up with partner hotels.

This premium WordPress theme’s responsive design allows guests to visit the site while on the go. This is perfect for friends and family travelling to the event. Planning a wedding need not be such a stressful activity if you have the right tools.

Features:

  • RSVP Module
  • jQuery Image Lightbox
  • Auto Image Resizing
  • Cross Browser Compatible
  • jQuery Image / Video Lightbox
  • Font-face custom font
  • Powerful Admin Options

This theme includes documentation, video tutorials, as well as access to an AfterCare Forum for theme support. Check out Just Married Premium WordPress Theme today.

Just Married Theme: $49 | Demo & Download

35 of the Best eCommerce WordPress Themes 2013

Believe it or not, 2013 is right around the corner, and we want you to be prepared. Thanks to some big advancements in eCommerce functionality for WordPress in 2012, the Best eCommerce Themes of 2013 are sure to be amazing. eCommerce is simply the commerce conducted through the Internet. With millions of websites, blogs, and Internet users, more and more businesses are taking their products online. The successes of sites like Amazon and Ebay has dispelled all skepticism about eCommerce websites – not to mention the scores of “mom and pop” operations selling everything from ebooks to digital hugs…yes…some people are making money selling completely made up things.

(more…)


WooThemes: The Reboot

Just this month, WooThemes introduced a club revamp and implemented new tiered licensing and support packages. Previously you could purchase one theme for $70. With it you get 2 bonus themes plus lifetime support. Now, with the new tiered licensing scheme, WooThemes introduces 3 more packages in addition to its Standard Package offering: the Developer Theme Package, the Standard Club Package, and the Developer Club Package.

Standard Package – $70

WooThemes retains this package everyone has gotten used to. You still get the theme you want with unlimited domain usage plus two other themes of your choice. Previously, however, you got lifetime support for your purchased theme while in the new scheme only 1 year of support is included. WooThemes has explained that revenues gotten from the initial purchase 3 years ago will not sustain the support services obtained during the lifetime of the product. Users have the option to purchase lifetime support service for an additional $30. This package does not include PSD files.

Developer Package – $150

This package is similar to the Standard package. You get unlimited domain usage for the theme you purchased plus 3 other themes. The Developer package includes PSD files for additional customization capabilities. Service is likewise for 1 year with the option for lifetime support for an additional $30.

Standard Club Package – $20 per month + $125 start-up fee

This package gives you access to all 82 themes in the WooThemes inventory with unlimited domain uses as well as an additional of at least 1 theme a month. It gives you access to support services as long as membership is current. This package does not include access to PSD files.

Developer Club Package – $25 per month + $200 start-up fee

This package also gives you access to all 82 themes in the WooThemes inventory with unlimited domain uses as well as an additional of at least 1 theme a month. PSD files are included with this package. Support access available as long as membership is current.

Similarly extensions of the popular WooCommerce plugin are now under a tiered licensing scheme. You can purchase single site use, usage for up to 5 sites or unlimited site usage.

While a lot of folks have accepted the changes in WooThemes some have expressed dissatisfaction with the new setup. One user stated that from his point of view WooThemes jacked the prices up and lowered the support quality. Another user lamented the shutting down of support forums as support is not email based in response to the new system. The majority of users, however, still think WooThemes needs to do what is necessary to sustain its business in response to the growth the WordPress industry.

Sometimes, in order for businesses to survive in an ever evolving business environment, changes have to be undertaken to ensure the viability and profitability of such. Otherwise, to remain in business without profitability is a futile endeavor. Any change, especially in businesses, does not happen at a whim. Surely, the people behind WooThemes have put in the thought process before they arrived at their new scheme. The tricky part is in the area of providing support and for how long. Unless there is a guarantee that every theme that comes out of WooThemes is fail-proof (all things remaining constant) up to a certain point, no matter how many updates and plugins come out, – people will still expect to receive support. And if they don’t they will simply switch providers. It’s as simple as that.

See the WooThemes Reboot