How to add HTML tags into WP user bio

How to add HTML tags into WP user bio

WordPress automatically removes any HTML that appears in user profile bios (bios). This is a little piece of code that permits HTML in author bios. Very easy to do: simply add the following code to the functions.php file of your plugin or theme: remove_filter(‘pre_user_description’, ‘wp_filter_kses’); This disables the wp_filter_kses filter from the user description by […]

How to Create WordPress Custom Post Type

How to Create WordPress Custom Post Type

Custom post types make things a lot easy for non-technical people to use the WordPress admin to enter content. However the designer/developer still needs to have a reasonable grasp of PHP and needs to be prepared to get their hands dirty (unless they opt for a plugin that does the job for you like). For […]