Finally 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.
I still need to update this post.
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!
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.
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');