'setting_id', // Unique id * 'title' => 'My Setting', // Title or label for the setting * 'description' => 'Description', // Help text description * 'blank_option' => true, // Whether or not to show a blank option * 'args' => array(); // Arguments to pass to WordPress's get_post() function * ); * * @since 1.0 * @package Simple Admin Pages */ class sapAdminPageSettingSelectPost_2_7_4 extends sapAdminPageSetting_2_7_4 { public $sanitize_callback = 'intval'; // Whether or not to display a blank option public $blank_option = true; /** * An array of arguments accepted by get_posts(). * See: http://codex.wordpress.org/Template_Tags/get_posts */ public $args = array(); /** * Display this setting * @since 1.0 */ public function display_setting() { $posts = new WP_Query( $this->args ); ?>
display_description(); } }