Mahmood Yaqub

Web Developer, SEO Expert, SEM, Online Strategic Analyst

Advanced Global Trading

Advanced Global TradingFinally done launching www.advancedglobaltrading.com. If you didn’t know I am currently working at Advanced Global Trading as Group Digital Marketing Manager. You can find more about Advanced Global Trading on Linked or visit our website.

We’ve also put up FREE Carbon Trading Investment Brochure that you can download for more information.

14 November 2012 at 11:32 - Comments

Chris Middleton – Did you find me?

I still need to update this post.

14 November 2012 at 11:25 - Comments

Remove admin bar for WordPress user & subscribers

To remove wordpress admin bar for users, subscribers, contributors etc add the following code to functions.php somewhere below <?php

// disable the admin bar
show_admin_bar(false);

Alternatively you can go to wp-admin > All Users > Edit User > Uncheck option Show Toolbar when viewing site.

Hope it helps!

17 December 2011 at 16:18 - Comments

Delete WordPress Unapproved Comments phpMyAdmin

The following SQL query allows youto Delete WordPress unapproved comments through phpMyAdmin.

DELETE FROM wp_comments WHERE comment_approved = 0

Please back up your wordpress database before you make any changes.

5 September 2011 at 15:15 - Comments

Remove Title Attribute From Navigation Menus

Many prefer the built in page and category navigation so they won’t have to set it up for new items or just because that is what they are comfortable with. Often it might be desired to remove the title attribute assigned to menu items by WordPress. As with many things, this can be done in more than one way.

This method filters the list output directly and prevents any title from showing. Add this to your functions.php file to remove the title from categories.

Open up the functions.php file in your child theme and add the following code. The code should be entered at the end of the file, just before the closing ?> if there is one.

function wp_list_categories_remove_title_attributes($output) {
$output = preg_replace('` title="(.+)"`', '', $output);
return $output;
}
add_filter('wp_list_categories', 'wp_list_categories_remove_title_attributes');

Article Source
26 August 2011 at 04:26 - Comments