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
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { | |
exit; | |
} | |
// Uninstallation actions here |
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
if ( ! current_user_can( 'activate_plugins' ) ) { | |
return; | |
} | |
$plugin = isset( $_REQUEST['plugin'] ) ? $_REQUEST['plugin'] : ''; | |
check_admin_referer( "deactivate-plugin_{$plugin}" ); |
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
if ( ! current_user_can( 'activate_plugins' ) ) { | |
return; | |
} | |
check_admin_referer( 'bulk-plugins' ); | |
if ( __FILE__ != WP_UNINSTALL_PLUGIN ) { | |
return; | |
} |
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 wmpudev_enqueue_icon_stylesheet() { | |
wp_register_style( 'fontawesome', 'http:////maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css' ); | |
wp_enqueue_style( 'fontawesome'); | |
} | |
add_action( 'wp_enqueue_scripts', 'wmpudev_enqueue_icon_stylesheet' ); | |
?> |
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
.fa::before { | |
float: left; | |
margin-top: 8px; | |
width: 30px; | |
} |
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
/* | |
Theme Name: WPMU DEV Custom Navigation Menu Icons | |
Theme URI: http://rachelmccollin.co.uk/wpmudev-custom-menu-icons | |
Description: Theme to support WPMU DEV post on custom menu items | |
Author: Rachel McCollin | |
Author URI: http://rachelmccollin.co.uk/ | |
Template: twentyfifteen | |
Version: 1.0 | |
*/ |