What is WordPress Multisite Network: Multisite is a WordPress feature which allows users to create a network of sites on a single WordPress installation. Available since WordPress version 3.0, Multisite is a continuation of WPMU or WordPress Multiuser project. Multisite Network Features: You can run a network of multiple WordPress blogs and websites from … Continue reading How To Create WordPress Multisite
Category: Wordpress
WHAT WE WILL DO? Add a Custom Background. Replace the WordPress Logo with our Custom Logo. Customize the look of Login Form. Change the Login Logo URL. Remove the “Lost Password” link (if you want). Remove the Login Page Shake. Change the Redirect URL after successful Login. Set “Remember Me” to be Checked. The … Continue reading How to Create a Custom WordPress Login Page
By default, WordPress only allows you to upload certain filetypes. Most common filetypes for images & Microsoft Office documents are allowed. But let’s take a look at how to add additional filetypes in the WordPress Media Library. How to Add Allowed Filetypes to WordPress Media Library Adding a single filetype looks like this: … Continue reading Add & Remove Filetypes in WordPress Media Library
What is Child Themes in WordPress Child themes build upon an existing theme, without modifying the original theme, so that if the theme ever gets updated, your modifications to the theme are safe, because you’ve created a new theme and the update will only change the original files. How To Create a Child … Continue reading WordPress Child Themes
If You Have a Following Error: #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w'at line I Have A Solution: Solution 1: 1).Go To PhpMyadmin … Continue reading [Solved] MySQL #1064 Error in WordPress Migration
The Loop The WordPress loop is PHP code that displays WordPress posts. The loop is used in WordPress themes to display a list of posts in a web page. Inside the loop there are some functions that are run by default to display posts. Theme developers can format the output by using template tags to … Continue reading WordPress Loop And Query
Widget Code: Start by creating a new .php file in your wp-content/plugins directory. Call your file whatever you like, but I’m going with random-post-widget.php Paste the following into the file and save. Feel free to change the section at the top with my name in it, but don’t adjust the rest of the code … Continue reading How To Create WordPress Widgets
What is POST in WORDPRESS How to Handle WORDPRESS Post A CMS can have different type of content and wordpress is a CMS so it also holds different content that content is called post. All those posts are stored in same place in wordpress i.e. in the wp_post table in the database you created at … Continue reading WordPress Post
What Are WordPress Hooks? Hook is a certain location in the WordPress code which allows you to attach or run your own code. Another way of describing WordPress hooks is that they are sort of like designated areas within the WordPress code which give you the opportunity to execute your own functions. If you decided … Continue reading WordPress Action Hooks and Filter Hooks