PUM_Admin_Subscribers::load_user_list_table_screen_options()


Description Description


Source Source

File: classes/Admin/Subscribers.php

	public static function load_user_list_table_screen_options() {
		add_screen_option( 'per_page', array(
			'label'   => __( 'Subscribers Per Page', 'popup-maker' ),
			'default' => 20,
			'option'  => 'pum_subscribers_per_page',
		) );

		/*
		 * Instantiate the User List Table. Creating an instance here will allow the core WP_List_Table class to automatically
		 * load the table columns in the screen options panel
		 */
		self::list_table();
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.