PluginProbe
Code Engine – PHP Snippets, AI Functions & Automation for WordPress / 0.3.0
Code Engine – PHP Snippets, AI Functions & Automation for WordPress v0.3.0
0.5.7 0.5.6 0.5.5 0.5.4 0.5.3 0.5.2 0.5.1 0.5.0 0.4.9 0.4.8 0.4.7 0.4.6 trunk 0.0.1 0.0.2 0.2.8 0.2.9 0.3.0 0.3.1 0.3.2 0.3.3 0.3.4 0.3.5 0.3.6 0.3.7 All 33 releases
← All changes | common/admin.php +2 -2 0.3.20.3.0 View file →
@@ -26,10 +26,10 @@
26 26
27 27 // Check potential issues with this WordPress install, other plugins, etc.
28 28 new MeowCommon_Issues( $prefix, $mainfile, $domain );
29 29
30 - // Create the Meow Apps Menu (priority 5 to ensure it's created early)
31 - add_action( 'admin_menu', array( $this, 'admin_menu_start' ), 5 );
30 + // Create the Meow Apps Menu
31 + add_action( 'admin_menu', array( $this, 'admin_menu_start' ) );
32 32 $page = isset( $_GET["page"] ) ? sanitize_text_field( $_GET["page"] ) : null;
33 33 if ( $page === 'meowapps-main-menu' ) {
34 34 add_filter( 'admin_footer_text', array( $this, 'admin_footer_text' ), 100000, 1 );
35 35 }