background preloader

Wordpress

Facebook Twitter

10 WordPress Plugins For Better Backend Administration. One of the best parts about WordPress is how easy it is to customize with plugins. To illustrate its flexibility, here are a few examples of what you can do on your WordPress site with plugins: Even though WordPress is designed to cater to as many scenarios as possible, you might want to change things like removing a menu from the Dashboard for particular users, or to simplify the backend for less technically savvy users such as your clients, or even to better and more easily manage widgets.

Here are 10 handy plugins that will give you all that and more. Recommended Reading: Find And Install WordPress Plugins Through Github 1. Adminimize Adminimize is the plugin to install if you let your clients have access to the backend. 2. Once activated, Client Dash simplifies the WordPress dashboard. 3. There are actually two types of widget in WordPress. 4. If you think that clients should not be allowed to access to the Dashboard, you can install Remove Dashboard Access. 5. 6. 7. 8. 9. 10. Creating Child Themes. Documentation / WordPress child theme allows you change the functionality of the theme without having to edit the original/parent theme template files. If you need to modify any template file, we recommend to create a child theme instead of editing the theme template files. Since the child theme is stored separately, you don't need to redo the changes next time you upgrade the theme.

How Child Theme Works Basically once the child theme is activated, WordPress will look for the template files in the child theme folder first. 1) Creating a Child Theme: To start a child theme, create a new theme folder (eg. Theme Name (required) = use the parent theme name + child to make it easy to identify (eg. /* Theme Name: Folo Child Description: Child theme for Folo theme Author: Themify Template: folo */ /* write custom css */ Finally, we need to load the stylesheet of the parent theme. 2) Overriding Parent Theme Template Files For example: For another example: Child Theme functions.php (optional)

Ten Things Every WordPress Plugin Developer Should Know. Advertisement Plugins are a major part of why WordPress powers millions of blogs and websites around the world. The ability to extend WordPress to meet just about any need is a powerful motivator for choosing WordPress over other alternatives. Having written several plugins myself, I’ve come to learn many (but certainly not all) of the ins-and-outs of WordPress plugin development, and this article is a culmination of the things I think every WordPress plugin developer should know.

Oh, and keep in mind everything you see here is compatible with WordPress 3.0+. Don’t Develop Without Debugging The first thing you should do when developing a WordPress plugin is to enable debugging, and I suggest leaving it on the entire time you’re writing plugin code. Enabling debugging also turns on WordPress notices, which is important because that’s how you’ll know if you’re using any deprecated functions. How to Enable Debugging define('WP_DEBUG', false); Replace that line with the following: if (! If (! 9 WordPress Plugins To Detect Malicious Code In Your Site. WordPress is one of the most popular content management systems (CMS) used by people either for simple blogging or other purposes like setting up an e-commerce store. There are plugins and themes to choose from as well. Some of them are free while other are not. Often, a few of these themes are actually uploaded by people who have tweaked them for their own gain.

They could possibly filled with malicious code that can easily hack your blog. Sometimes, backlinks to their sites are also added into these themes and a normal user has no idea how to cope with these backlinks. In this post, we’ve gathered 9 effective tools to deal with malicious code in a WordPress theme or website. Recommended Reading: 12 Essential Plugins For WordPress Developers 1. Theme Authenticity Checker (TAC) is a WordPress plugin which scans the source file of each installed WordPress theme for malicious code such as hidden footer links and Base64 codes. 2. 3. 4. 5. 6. 7. 8. 9. Ten Things Every WordPress Plugin Developer Should Know.