Tag Archives: Wordpress

wordpress

Security – Plugins menu not showing in WordPress.

Today in my development area I saw the plugins menu not showing in WordPress. The main reason was:

This can be changed to false. Security WordPress keys are random and complicated you can use the online generator on this website. More settings for WordPress can be found on the official website.

PHP – First steps with the PHP language – part 001 .

I started learning the PHP programming language in 2003. The official webpage can be found on this website and comes with this intro. PHP is a popular general-purpose scripting language that is especially suited to web development. Fast, flexible, and pragmatic, PHP powers everything from your blog to the most popular websites in the world.… Read More »

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 »

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.

and remove the category… Read More »