WordPress.com got a new face and open-sourced

Automattic, the creator of WordPress announced today, the relaunch WordPress.com.
WordPress.com is the sister solution of the content management system WordPress, but it’s considered as the money-making machine for the company because it’s a hosted version of the CMS used by up to 25 percent of the Web entities.

Based on the same system in the beginning, today, WordPress.com is taking a major deviation from the WordPress core, by using JavaScript instead of PHP and swapping the admin look for a more simplified design.

WPCOM3

Automattic also open-sourced the entire codebase behind the platform solution on GitHub, to allow anyone to learn, copy, and work with the code that behind WordPress.com.
Also, the company announced the launch of a Mac app powered by the same technology that runs WordPress.com, creating a seamless experience for publishing and browsing whether the user is in a browser, a mobile app, or the desktop.

You May Also Like

Affect an image to categories in WordPress without plugin

This tutorial allows you to add a text field to fill the URL of an image for each of your categories. Add this in your functions.php file: [sourcecode language=”php”]add_action(‘init’, ‘my_category_module’);[/sourcecode] [sourcecode language=”php”]function my_category_module() { add_action ( ‘edit_category_form_fields’, ‘add_image_cat’); add_action ( ‘edited_category’, ‘save_image’); }[/sourcecode] The function to add the extra field : [sourcecode language=”php”]function add_image_cat($tag){ $category_images = get_option( ‘category_images’ ); $category_image = ”; if ( is_array( $category_images ) && array_key_exists( $tag->term_id, $category_images […]

How to Transfer From Blogger to WordPress In 6 Super Easy Steps

Blogger is a great tool for beginners, but once a blogger starts to realise the perks of having full control over their content, then WordPress becomes the next best option. There is a lot of information about how to migrate your blog or site. The hardest part about this move is trying to find and […]

Media Temple is launching a new enterprise WordPress solution

Media Temple, the leading hosting company owned by GoDaddy, launched a new enterprise-grade WordPress hosting solution today and hosting the new-brand service on AWS. The company knowing for its advanced WordPress Hosting service on its own servers that promise a better configuration and supported installs, will keep helping with the security issues and automatically patch […]

Easy Tips for Changing the Author of a Published Post in WordPress

Suppose you wrote a post and published it then realized that you are not the author listed, how will you plan to change the “author”? There are other reasons why writers need to change the author of the blog posts such as: when you need to replace the author name under your name, as well […]