查看下面的代码,可以完美地添加选项并保存它们。然而,我希望在我的插件短代码中使用首页上的这些数据。
class MySettingsPage
{
/**
* Holds the values to be used in the fields callbacks
*/
private $options;
/**
* Start up
*/
public function __construct()
{
add_action( \'admin_menu\', array( $this, \'add_plugin_page\' ) );
add_action( \'admin_init\', array( $this, \'page_init\' ) );
}
/**
* Add options page
*/
public function add_plugin_page()
{
// This page will be under "Settings"
add_options_page(
\'Settings Admin\',
\'My Settings\',
\'manage_options\',
\'my-setting-admin\',
array( $this, \'create_admin_page\' )
);
}
/**
* Options page callback
*/
public function create_admin_page()
{
// Set class property
$this->options = get_option( \'my_option_name\' );
?>
<div class="wrap">
<h2>My Settings</h2>
<form method="post" action="options.php">
<?php
// This prints out all hidden setting fields
settings_fields( \'my_option_group\' );
do_settings_sections( \'my-setting-admin\' );
submit_button();
?>
</form>
</div>
<?php
}
/**
* Register and add settings
*/
public function page_init()
{
register_setting(
\'my_option_group\', // Option group
\'my_option_name\', // Option name
array( $this, \'sanitize\' ) // Sanitize
);
add_settings_section(
\'setting_section_id\', // ID
\'My Custom Settings\', // Title
array( $this, \'print_section_info\' ), // Callback
\'my-setting-admin\' // Page
);
add_settings_field(
\'id_number\', // ID
\'ID Number\', // Title
array( $this, \'id_number_callback\' ), // Callback
\'my-setting-admin\', // Page
\'setting_section_id\' // Section
);
add_settings_field(
\'title\',
\'Title\',
array( $this, \'title_callback\' ),
\'my-setting-admin\',
\'setting_section_id\'
);
}
/**
* Sanitize each setting field as needed
*
* @param array $input Contains all settings fields as array keys
*/
public function sanitize( $input )
{
$new_input = array();
if( isset( $input[\'id_number\'] ) )
$new_input[\'id_number\'] = absint( $input[\'id_number\'] );
if( isset( $input[\'title\'] ) )
$new_input[\'title\'] = sanitize_text_field( $input[\'title\'] );
return $new_input;
}
/**
* Print the Section text
*/
public function print_section_info()
{
print \'Enter your settings below:\';
}
/**
* Get the settings option array and print one of its values
*/
public function id_number_callback()
{
printf(
\'<input type="text" id="id_number" name="my_option_name[id_number]" value="%s" />\',
isset( $this->options[\'id_number\'] ) ? esc_attr( $this->options[\'id_number\']) : \'\'
);
}
/**
* Get the settings option array and print one of its values
*/
public function title_callback()
{
printf(
\'<input type="text" id="title" name="my_option_name[title]" value="%s" />\',
isset( $this->options[\'title\'] ) ? esc_attr( $this->options[\'title\']) : \'\'
);
}
****我试过下面这样的东西****
public function DataToget()
{
$jugHigh=get_option( $this->options[\'title\'] );
return $jugHigh;
}
}
I have try to make use of it at front page no luck
if ( !function_exists("getdat") ){
function getdat_func() {
$getdatClass = new MySettingsPage();
$output=$getdatClass->DataToget();
$output= apply_filters( \'getdat_func\', $output );
return $output;
}
}
add_shortcode( \'getdat\', \'getdat_func\' );
最合适的回答,由SO网友:s_ha_dum 整理而成
您正在将数据保存到名为my_option_name
因此,您尝试从名为$this->options[\'title\']
不会起作用的。您将需要以下内容:
public function DataToget($field = \'\') {
if (empty($field)) return;
$jugHigh = get_option( \'my_option_name\' );
if (!isset($jugHigh[$field])) return;
return $jugHigh[$field];
}
使用以下短代码:
if ( !function_exists("getdat_func") ){
function getdat_func() {
$getdatClass = new MySettingsPage();
$output=$getdatClass->DataToget(\'title\');
$output= apply_filters( \'getdat_func\', $output );
return $output;
}
}
add_shortcode( \'getdat\', \'getdat_func\' );
但实际上,只需将短代码回调应用到您的类中:
function getdat_func() {
$output = $this->DataToget(\'title\');
$output= apply_filters( \'getdat_func\', $output );
return $output;
}
并将此行添加到构造函数中:
add_shortcode( \'getdat\', array($this,\'getdat_func\') );