You must have experienced that WordPress asks for FTP credentials if you initiate upgrade or install plugins. And sometimes developers don’t have FTP access and all they have is WordPress admin panel access. Let’s see why WordPress asks for FTP info and how to bypass it and enable WordPress to install updates and plugins without FTP info. Continue reading “Install WordPress plugins, themes & upgrades without providing FTP access?”
Category: WordPress
Adding Custom Fields to WordPress User Profile and Add New User page
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”
Common mistakes in WordPress Theme Development
This post will let you know about common mistakes in WordPress theme development and also tell you how to avoid them. Continue reading “Common mistakes in WordPress Theme Development”
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”
WordPress search filters based on custom fields
WordPress custom fields are good for adding meta data to posts. These custom fields are not just for displaying data but can be used to sort and filter posts. You may be interested in making a form to filter posts by custom fields.
Continue reading “WordPress search filters based on custom fields”
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