Adding custom profile fields in WordPress made easy through action hooks. .Most of the solutions available on internet tell you about adding custom fields on “Edit User” screen, in this tutorial I will tell you how to add your custom fields to Add New User screen
Continue reading “Adding Custom Fields to WordPress User Profile and Add New User page”
Category: Plugins
Script Logic Plugin
Introduction
Script Logic is a WordPress plugin that lets you control on which pages scripts and style sheets load using WP’s conditional tags.
Continue reading “Script Logic Plugin”
How to create custom form in WordPress and handle submission?
There are cool plugins available that create forms without any programming effort but still many times we need to create custom forms in our WordPress website.
Continue reading “How to create custom form in WordPress and handle submission?”
Multi Image Upload
Multi Image Upload adds a meta box to upload multiple images for posts and pages. You can enable it for custom post types also. Continue reading “Multi Image Upload”
Add remove WordPress dashboard widgets
WordPress comes with a bunch of widgets loaded on its dashboard. The default WordPress dashboard may seems cluttered to some users because many widgets may be irrelevant for them. Such users can easily clean their dashboard.
Continue reading “Add remove WordPress dashboard widgets”
Change WordPress login screen logo
function my_custom_login_logo() { echo 'h1 a { background-image:url(' . get_bloginfo('template_directory') . '/images/custom-login-logo.gif) !important; }'; } add_action('login_head', 'my_custom_login_logo');
Add custom menu item for WP subscribers panel
if (is_admin()) { add_action('admin_menu', 'my_menu'); } function my_menu() { add_menu_page('My Page Title', 'My Menu Title', 'subscriber', 'my-page-slug', 'my_function'); } function my_function() { echo 'Hello world!'; }
debug WP Queries and boost performance
Hi, I found a very useful plugin for WP Query debugging. I proudly share this resource with you, because I believe it will be very useful to people who want to optimize their WordPress site by identifying & optimizing time taking queries.
So, here is plugin URL link