Category Archives: Wordpress
PHP – Start create a plugin for WordPress.
A plugin can add new features to any part of your website, including the WP-Admin-Panel. You can change the default behavior of WordPress, or remove the functionality/functions completely. Plugins allow you to customize the WordPress site without touch your actual WordPress code. WordPress plugins are standalone, they do not physically alter any of the WordPress… Read More »
Web – WordPress plugin for Google users.
Today I will show you a very good tool for WordPress websites and google users. This tool is named Site Kit by Google and is a WordPress plugin. You can see this plugin on the official website. The install steps for this plugin: visit to add the plugin using the menu: Plugins – Add New.… Read More »
Fix the new WordPress Gutenberg editor with the old one.
Is very simple to do that. Just you need to install official Classic Editor plugin from here. The development team comes with this intro: Description Classic Editor is an official plugin maintained by the WordPress team that restores the previous (“classic”) WordPress editor and the “Edit Post” screen. It makes it possible to use plugins… Read More »
Fix error wordpress 3.5 “Bad value category tag for attribute rel…”
The WordPress 3.5 release can give you this error: Bad value category tag for attribute rel… The error is given by W3C Validator. The error can be fixed with these changes: editing file wp-includes/category-template.php Goto line 163 in your category template (wp-includes/category-template.php) file and change this line of source code.
1 | $rel = ( is_object( $wp_rewrite ) && $wp_rewrite->using_permalinks() ) ? 'rel="category tag"' : 'rel="category"'; |
and remove the category… Read More »