WordPress dot Org Plugins You Might Have Missed

WordPress dot org has some powerful plugins that you might not have discovered yet. Check out these cool plugins that just might be the solutions you have been looking for. Some of these plugins are still in the draft or development stage as of this writing.

Admin Color Schemes

The Admin Color Schemes plugin brings some personality to your WordPress site with 8 new extra admin color schemes. If you want to add some fun and pizzazz to your WordPress backend for that not so formal look, check out this cool plugin to create the color scheme that matches your personality.

WordPress Importer

The WordPress Importer plugin will import the following content from a WordPress export file: posts, pages and other custom post types, comments, custom fields and post meta, categories, tags and terms from custom taxonomies, authors, etc. The importer also has a couple of filters to allow you to completely enable/block certain features. Take note though that if your exported file is very large, the import script may run into your host’s configured memory limit for PHP.

Debug Bar

The Debug Bar plugin adds a debug menu to the admin bar that shows query, cache, and other helpful debugging information. This plugin is a must for WordPress developers. This plugin tracks PHP Warnings and Notices to make them easier to find when WP_DEBUG is enabled, and mysql queries are tracked and displayed when SAVEQUERIES is enabled. This plugin is extremely helpful for theme and plugin developers, just make sure that plugin is installed correctly.

WordPress Front-end Editor

The WordPress Front Editor plugin is a simple and easy to use plugin that allows you to navigate between the front and back end where you can access more advanced options such as custom fields, edit content, etc. This plugin is still in the development stage.

WordPress Front Editor

The WordPress Front Editor plugin is a simple and easy to use plugin that allows you to navigate between the front and back end where you can access more advanced options such as custom fields, edit content, etc. This plugin is still in the development stage.

Tumblr Importer

The Tumblr Importer plugin allows you to import posts, drafts, and pages including media side loading (for audio, video, and image posts) from a Tumblr blog into a WordPress blog. It correctly handles, post formats, does background importing, and will not create duplicate imported posts.

Blogger Importer

The Blogger Importer plugin allows you to import posts (published, scheduled, and draft, comments, and categories (blogger tags) from a Blogger blog then migrates authors to WordPress users.


Fusion Theme from Elegant Themes is HERE!

Elegant Themes’ recently released Fusion Premium WordPress Theme is a theme designed to bring pizzazz into business websites by fusing fun and professionalism together in one awesome theme. Who says business themes have to boring and sterile when you can jazz it up and make it more interesting? This theme is intended for startups, tech companies, and design firms but it can easily be tweaked and adapted to whatever website you have in mind.

What’s hot? Fusion’s generous homepage slider dominates the theme’s layout even beyond the fold giving you maximum room to showcase your very best products or services with a bang. You have a choice of 5 gorgeous backgrounds to wow your audience with and the animated slideshow is smooth and sleek. The font choices used add that overall subtle elegance to the whole theme while still maintaining readability.

This premium WordPress theme also includes several page templates like: a contact form with built in Captcha, a portfolio section with 5 layout options, a sitemap, an image gallery, an advanced search page, and a not your usual WordPress login page. You can also assign content like quotes, article excerpts, client logos or icons to specific widgetized sections for that professional feel.

Overall, Fusion’s theme layout, color styling, font choices, and built-in features and functionalities are great as is but if you want to customize certain features to make it more custom you can do so via its powerful Theme Options Panel. You can also enhance other functionalities with the use of the theme’s shortcodes. This premium WordPress theme is responsive so you can be assured that you the same pizazz is there no matter what screen size you view it in.

Features:

  • Perpetual Updates
  • Secure and Valid Code
  • Browser Compatibility
  • Complete Localization
  • Unlimited Colors
  • Unparalleled Support

Fusion 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.

Get Fusion from Elegant Themes Now!

Fusion Theme from Elegant Themes Coming Soon

Elegant Themes recently announced their new and upcoming theme: Fusion – a theme designed to “fuse” professionalism and pizzazz to create that perfect solution for technology companies and blogs alike. If you run a tech blog or an app development company and you need a really cool looking theme that’s hip and modern then Fusion is probably the theme for you.

The general design of this theme is similar to Elegant’s recent themes, Nimble and Harmony, taking off from that single page design while adding the modern, graphic flavor to it. One of the many benefits of a “one page” design is that you get a quick and easy, concise at a glance look, quite handy for mobile devices, with options for details in sub pages.

Similar to Nimble and Harmony, Fusion has large sections clearly delineated from each other. Fusion has a section allocated for a logo, navigation menu and other corporate brand or social networking icons all prominently located above and seamlessly flows into a generously spaced section for a slider. This slider section can be used to showcase featured images or products, attention grabbing spiels, and other important announcements useful to your visitors. This can be followed by a section where static text boxes or placeholders can be used to feature select products or services. You also have an area to feature the latest blog post headlines that link to the full posts on the and there is also provision for sponsor links or ad banners. A widgetized footer area can also be setup to add more features and functionalities useful to the site.

So far we we’ve seen that Elegant Themes has been consistent as far as quality is concerned and so far, each product released remains true to its reputation for great design. This commitment can be experienced and has been experienced by so many customers in every Elegant Themes subscription. This latest theme offering is something to look forward to and no doubt it will be something that will surely be according to Elegant Themes’ strict standards.

Get 77 Premium Themes For $39

WordPress and PHP


In the last few weeks, we’ve learned some basic concepts on HTML5 and CSS. A simple analogy we can use as to how they work can be likened to writing a traditional letter sent via snail mail. HTML5 is like marking and dividing the content of the letter into sections like: the date, the greeting, the body, the closing, and the signature. CSS is what is used adds pizzazz to the is the way the letter is written: stylized handwriting, choice paper, and images and illustrations to enhance it. The result is a beautiful handwritten masterpiece ready to be sent and read by the reader. This week, we add on to our WordPress building blocks and learn how PHP comes into the picture.

To review, here’s how we defined PHP:

PHP (initially Personal Home Page tools)

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.

Adam Brown shared this simple and easy to understand explanation to tie it all up together:

When you view a webpage, the server (i.e. the site you are viewing) sends a bunch of HTML to your computer. Your browser (Firefox, Safari, Internet Explorer, whatever) then turns this HTML source into the pretty stuff you see in your browser. With pure HTML, every visitor to a website will see the same thing, no matter what.

For example,

if we make an HTML page with this content:

<p>Today is December 1st, 2007<p>

…everyone who visits the site will see this:

Today is December 1st, 2007

…even if it is not December 1st, 2007.

What if you want to modify that so it always shows the current date? That’s where PHP comes in. PHP is processed by your server (i.e. by the site you are visiting). The server evaluates any PHP in the page before sending anything to your browser. So if we write this in the web page:

<p>Today is <?php echo date(‘F jS, Y’); ?></p>

Then the server will change that PHP expression into the current date, then send that as HTML to your browser, which then does its part.

Remember: The server processes PHP, but the browser processes HTML.

PHP does not get sent to the browser, only the HTML that the PHP produces.

People sometimes wonder why their theme’s index.php file looks nothing like the HTML source they see in their browser. Well, now you know why.

(source: PHP 101- Adam R. Brown. Check out his website for more easy to follow tutorials.)

Why is it important to understand PHP? Because WordPress is written using PHP and requires it for operation.

Till next!