This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function wp_code_context() { | |
$theme = strpos( __DIR__, 'themes' ); | |
return ( $theme ) ? 'theme' : 'plugin'; | |
} | |
function get_directory_by_context() { | |
$context = wp_code_context(); | |
switch( $context ) { | |
case 'theme': | |
$local_dir = get_template_directory(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function dwwp_add_google_link() { | |
global $wp_admin_bar; | |
$wp_admin_bar->add_menu( array( | |
'id' => 'google_analytics', | |
'title' => 'Google Analytics', | |
'href' => 'http://google.com/analytics/' | |
) ); |