Skip to content

Instantly share code, notes, and snippets.

@wpmu-authors
wpmu-authors / uninstall.php
Created February 3, 2021 17:49
uninstall.php
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
exit;
}
// Uninstallation actions here
@wpmu-authors
wpmu-authors / security.php
Created February 3, 2021 17:59
security.php
if ( ! current_user_can( 'activate_plugins' ) ) {
return;
}
$plugin = isset( $_REQUEST['plugin'] ) ? $_REQUEST['plugin'] : '';
check_admin_referer( "deactivate-plugin_{$plugin}" );
@wpmu-authors
wpmu-authors / security-uninstall.php
Created February 3, 2021 18:00
security-uninstall.php
if ( ! current_user_can( 'activate_plugins' ) ) {
return;
}
check_admin_referer( 'bulk-plugins' );
if ( __FILE__ != WP_UNINSTALL_PLUGIN ) {
return;
}
@wpmu-authors
wpmu-authors / Activate Font Awesome
Created February 3, 2021 18:37
Activate Font Awesome
<?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' );
?>
@wpmu-authors
wpmu-authors / CSS for Home menu item
Created February 3, 2021 18:43
CSS for Home menu item
fa fa-lg fa-home
@wpmu-authors
wpmu-authors / Navigation Menu width styling
Created February 4, 2021 08:25
Navigation Menu width styling
.main-navigation ul li {
width: 100%;
}
@wpmu-authors
wpmu-authors / Float for menu icon
Created February 4, 2021 08:34
Float for menu icon
.fa::before {
float: left;
}
@wpmu-authors
wpmu-authors / Styling for icon
Created February 4, 2021 08:40
Styling for icon
.fa::before {
float: left;
margin-top: 8px;
width: 30px;
}
@wpmu-authors
wpmu-authors / Menu text styling
Created February 4, 2021 09:05
Menu text styling
.main-navigation ul li.fa.fa-lg a {
font-family: 'Noto Serif', serif;
font-size: 0.8em;
}
@wpmu-authors
wpmu-authors / Final stylesheet
Created February 4, 2021 09:09
Final stylesheet
/*
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
*/