$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>Load actions and filters only for the admin CPT list|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

Load actions and filters only for the admin CPT list

matteradmin10PV0评论

I'm developing a wordpress plugin, and I have a trouble that I can´t resolve for myself. Im trying to load some actions and filters only when the CPT admin list was loaded I have the following code:

The code in main plugin file:

<?php
..
..
..
require_once WTDOMCHECK_PLUGIN_DIR.'includes/class-plugin.php';

$WTDOMCHECK_SERVERS = "";
$LICENSE_STATUS = "";

// All the magic is done here!
if ( class_exists('plugin') ) $wtdomcheck = new plugin();

// Activation method
register_activation_hook( __FILE__, array($wtdomcheck, 'WTActivate' ) );

// Deactivation method
register_deactivation_hook( __FILE__, array($wtdomcheck, 'WTDeactivate' ) );

// Shortcode to insert the plugin
add_shortcode( 'wtdomcheck', 'WTDomcheckShow' );

//Fires basic tasks
$wtdomcheck->WTRegister();


// Where do you want to go?
if ( is_admin() ) {
    require_once( 'admin/wtdomcheck_admin.php' );
} else {
    require_once( 'public/wtdomcheck_front.php' );
}
?>

The content of the wtdomcheck_admin.php:

<?php
/**
 *
 * This file contains the necesary functions to display the admin area of the plugin
 *
 * @author  Ezequiel Cattaneo <[email protected]>
 *
 * @link    
 * @since   1.0.0
 *
 **/

require_once WTDOMCHECK_PLUGIN_DIR.'admin/class/class-admin.php';

$wtdomadmin = '';

//All the magic is done here!
if ( class_exists('admin') ) {

    $wtdomadmin = new admin();
    $wtdomadmin->WTRegister();

}
?>

And the trouble in the following class file class-admin.php:

<?
..
..
    //
    // PARAM
    // Register all the actions and filters for the Admin area
    //
    public function WTRegister() 
    {

        $this->settings->
            WTAddPages( $this->pages ) ->
            WTWithSubPage( 'Dashboard' ) ->
            WTAddSubPages( $this->subpages ) ->
            WTRegister();

        //Load stuffs for the settings page
        add_action( 'load-settings_page_wtdomaincheck', 
                    array($this, 'WTRegisterSettingsStuff') 
                  );

        //Load stuffs for the CPT list
        add_action( 'edit-wt_whoisservers', array($this, 'WTRegisterCPTStuff') );

        //Load the widget for the dashboard
        add_action( 'wp_dashboard_setup', 
                    array($this, 'WTDashboardWidgetSettings') 
                  );

        //PLUGIN LIST: Add custom links to the plugin, below the plugin name
        add_filter( 'plugin_action_links_'.WTDOMCHECK_PLUGIN_NAME, 
                    array($this->settings, 'WTAddCustomLinks')
                  );

        // Add to the admin_init action hook
        add_filter('current_screen', array($this, 'WTScreenId') );
    }
..
..
?>

In this peace of code, the actions and filters only load if the settings page is loaded in the screen, and function right ok:

//Load stuffs for the settings page
add_action( 'load-settings_page_wtdomaincheck', 
            array($this, 'WTRegisterSettingsStuff') 
          );

The trouble is that this peace of code are ignored and not executed:

//Load stuffs for the CPT list
add_action( 'edit-wt_whoisservers', array($this, 'WTRegisterCPTStuff') );

I want load actions and filters only when the cpt is displayed at screen.. the screen id "edit-wt_whoisservers" was obtained getting the current screen info.

Any help will be apreciated! Thanks in advance

I'm developing a wordpress plugin, and I have a trouble that I can´t resolve for myself. Im trying to load some actions and filters only when the CPT admin list was loaded I have the following code:

The code in main plugin file:

<?php
..
..
..
require_once WTDOMCHECK_PLUGIN_DIR.'includes/class-plugin.php';

$WTDOMCHECK_SERVERS = "";
$LICENSE_STATUS = "";

// All the magic is done here!
if ( class_exists('plugin') ) $wtdomcheck = new plugin();

// Activation method
register_activation_hook( __FILE__, array($wtdomcheck, 'WTActivate' ) );

// Deactivation method
register_deactivation_hook( __FILE__, array($wtdomcheck, 'WTDeactivate' ) );

// Shortcode to insert the plugin
add_shortcode( 'wtdomcheck', 'WTDomcheckShow' );

//Fires basic tasks
$wtdomcheck->WTRegister();


// Where do you want to go?
if ( is_admin() ) {
    require_once( 'admin/wtdomcheck_admin.php' );
} else {
    require_once( 'public/wtdomcheck_front.php' );
}
?>

The content of the wtdomcheck_admin.php:

<?php
/**
 *
 * This file contains the necesary functions to display the admin area of the plugin
 *
 * @author  Ezequiel Cattaneo <[email protected]>
 *
 * @link    https://webstower.ar/wtdomcheck
 * @since   1.0.0
 *
 **/

require_once WTDOMCHECK_PLUGIN_DIR.'admin/class/class-admin.php';

$wtdomadmin = '';

//All the magic is done here!
if ( class_exists('admin') ) {

    $wtdomadmin = new admin();
    $wtdomadmin->WTRegister();

}
?>

And the trouble in the following class file class-admin.php:

<?
..
..
    //
    // PARAM
    // Register all the actions and filters for the Admin area
    //
    public function WTRegister() 
    {

        $this->settings->
            WTAddPages( $this->pages ) ->
            WTWithSubPage( 'Dashboard' ) ->
            WTAddSubPages( $this->subpages ) ->
            WTRegister();

        //Load stuffs for the settings page
        add_action( 'load-settings_page_wtdomaincheck', 
                    array($this, 'WTRegisterSettingsStuff') 
                  );

        //Load stuffs for the CPT list
        add_action( 'edit-wt_whoisservers', array($this, 'WTRegisterCPTStuff') );

        //Load the widget for the dashboard
        add_action( 'wp_dashboard_setup', 
                    array($this, 'WTDashboardWidgetSettings') 
                  );

        //PLUGIN LIST: Add custom links to the plugin, below the plugin name
        add_filter( 'plugin_action_links_'.WTDOMCHECK_PLUGIN_NAME, 
                    array($this->settings, 'WTAddCustomLinks')
                  );

        // Add to the admin_init action hook
        add_filter('current_screen', array($this, 'WTScreenId') );
    }
..
..
?>

In this peace of code, the actions and filters only load if the settings page is loaded in the screen, and function right ok:

//Load stuffs for the settings page
add_action( 'load-settings_page_wtdomaincheck', 
            array($this, 'WTRegisterSettingsStuff') 
          );

The trouble is that this peace of code are ignored and not executed:

//Load stuffs for the CPT list
add_action( 'edit-wt_whoisservers', array($this, 'WTRegisterCPTStuff') );

I want load actions and filters only when the cpt is displayed at screen.. the screen id "edit-wt_whoisservers" was obtained getting the current screen info.

Any help will be apreciated! Thanks in advance

Share Improve this question edited Feb 23, 2019 at 14:33 Ezequiel Cattaneo asked Feb 23, 2019 at 14:26 Ezequiel CattaneoEzequiel Cattaneo 256 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

The trouble is that this peace of code are ignored and not executed:

It is because there is no action with name edit-wt_whoisservers

From your code it seems that instead of calling WTRegisterCPTStuff() through an add_action, you can call it directly to load resources for the CPT list.

So, the following code

//Load stuffs for the CPT list
add_action( 'edit-wt_whoisservers', array($this, 'WTRegisterCPTStuff') );

can be replaced with something like this:

if ( 'wt_whoisservers' == get_current_screen()->id ) {    // 
    $this->WTRegisterCPTStuff();
 }

I hope this helps.

Post a comment

comment list (0)

  1. No comments so far