I always use the all-in-one-seo-pack for WordPress websites which is a great plugin for SEO purposes. The only drawback is that it screws up the list of pages or posts in your WordPress admin section by adding three extra colums to it (SEO title, SEO keywords, SEO description).
To remove these colums go to the /wp-content/plugins/all-in-one-seo-pack/ folder and look for the file aioseop_functions.php
Now look for a function named aioseop_mrt_pcolumns. This is what its code looks like
if (!function_exists('aioseop_mrt_pcolumns')) { function aioseop_mrt_pcolumns($aioseopc) { global $aioseop_options; $aioseopc['seotitle'] = __('SEO Title'); $aioseopc['seokeywords'] = __('SEO Keywords'); $aioseopc['seodesc'] = __('SEO Description'); return $aioseopc; } }
You need to comment out the three lines from the $aioseopc variable. Your code should now look like this:
if (!function_exists('aioseop_mrt_pcolumns')) { function aioseop_mrt_pcolumns($aioseopc) { global $aioseop_options; /* $aioseopc['seotitle'] = __('SEO Title'); $aioseopc['seokeywords'] = __('SEO Keywords'); $aioseopc['seodesc'] = __('SEO Description'); */ return $aioseopc; } }