PluginProbe ʕ •ᴥ•ʔ
SiteOrigin CSS / 1.6.4
SiteOrigin CSS v1.6.4
1.2.1 1.2.10 1.2.11 1.2.12 1.2.13 1.2.14 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.4.0 1.4.1 1.4.2 1.4.3 1.5.0 1.5.1 1.5.10 1.5.11 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 trunk 1.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.2.0
so-css / inc / legacy.php
so-css / inc Last commit date
installer 1 year ago controller-config.php 1 year ago legacy.php 3 years ago
legacy.php
11 lines
1 <?php
2
3 /**
4 * Remove the menu item for the CSS editor that comes bundled with SiteOrigin themes
5 */
6 function siteorigin_css_legacy_remove_legacy_actions() {
7 remove_action( 'admin_menu', 'siteorigin_custom_css_admin_menu' );
8 remove_action( 'wp_head', 'siteorigin_custom_css_display', 15 );
9 }
10 add_action( 'after_setup_theme', 'siteorigin_css_legacy_remove_legacy_actions', 100 );
11