Hello,
I need to get the “theme options” located in the Admin top bar.
I tested the explanations below more did not work:
http://goo.gl/vSyQV0
http://goo.gl/gEVVdu
http://goo.gl/rwkMVG
Would you help me?
Thank you.
Hey Vinicius,
Try this in your functions.php file:
function ava_remove_theme_option() { ?>
<style>
#wp-admin-bar-avia {
display:none;
}
</style>
<?php }
add_action('init', 'ava_remove_theme_option');
Thanks,
Rikard
Worked!
Tks!