add code for all except admin
-
hi, I need to add a stats code for all users (guest or logged) except for myself (admin).
tried this, but seems to not work as expected.
any help?
add_action('wp_footer', 'insert_js_into_footer'); function insert_js_into_footer() { if ( ! current_user_can('administrator')) { ?> <!-- my code here --> <?php } }
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘add code for all except admin’ is closed to new replies.