我想知道是否可以在 wordpress 的仪表板中添加特定的文本小部件($id)或整个 dynamic_sidebar($id)。
实际上,我只需要客户端在仪表板上编辑文本小部件的文本,而无需转到菜单“外观 > 小部件”——此部分对于该用户角色是隐藏的。
如果您可以在此处留下一些链接或代码,我将不胜感激。
提前致谢
我想知道是否可以在 wordpress 的仪表板中添加特定的文本小部件($id)或整个 dynamic_sidebar($id)。
实际上,我只需要客户端在仪表板上编辑文本小部件的文本,而无需转到菜单“外观 > 小部件”——此部分对于该用户角色是隐藏的。
如果您可以在此处留下一些链接或代码,我将不胜感激。
提前致谢
为了解决这个问题,我的研究使我:
以下只是基于@Bainternet始终出色的代码(在 Q about 中control_callback
)的概念证明。
仪表板小部件显示选定文本小部件的标题,它显示“...的内容”,但应该是“...的标题”
它的配置屏幕显示一个下拉列表,其中包含所有侧边栏的所有文本小部件:
这是外观 > 小部件屏幕
现在,剩下要实现的是一个编辑界面(文本输入等)并在 option中保存正确的值widget_text
,使用:
update_option('widget_text', $a_VERY_well_structured_array_otherwise_things_will_break);
。
<?php
/*
Plugin Name: Dashboard Widget to deal with Text Widgets
Plugin URI: http://stackoverflow.com/q/14898302/1287812
Description: based on Bainternet plugin https://wordpress.stackexchange.com/q/77830/12615
Version: 0.1
Author: brasofilo
Author URI: https://wordpress.stackexchange.com/users/12615/brasofilo
*/
// Register widget
add_action( 'wp_dashboard_setup', 'add_dashboard_widget_wpse_77830' );
function add_dashboard_widget_wpse_77830()
{
wp_add_dashboard_widget(
'dashboard_widget_wpse_77830',
'Text Widgets',
'dashboard_widget_wpse_77830',
'dashboard_widget_wpse_77830_handle'
);
}
// Show widget
function dashboard_widget_wpse_77830()
{
//get saved data
if ( !$widget_options = get_option( 'my_dashboard_widget_options' ) )
$widget_options = array();
$saved_txt_widget = isset( $widget_options['txt_widget'] ) ? $widget_options['txt_widget'] : '';
echo "
<p><strong>Content of the Widget</strong></p>
<div class='txt_widget_class_wrap'>
<label style='background:#ccc;'> {$saved_txt_widget}</label>
</div>
";
}
// Configure and update widget
function dashboard_widget_wpse_77830_handle()
{
// Get saved data
if ( !$widget_options = get_option( 'my_dashboard_widget_options' ) )
$widget_options = array();
// Process update
if ( 'POST' == $_SERVER['REQUEST_METHOD'] && isset($_POST['my_dashboard_widget_options']) )
{
// Minor validation
$widget_options['txt_widget'] = wp_kses( $_POST['my_dashboard_widget_options']['txt_widget'], array() );
// Save update
update_option( 'my_dashboard_widget_options', $widget_options );
}
// Set defaults
if( !isset( $widget_options['txt_widget'] ) )
$widget_options['txt_widget'] = ''; //you can set the default
// Get Widget Text
$txt = get_option( 'widget_text' );
// Not necessary in the array
unset($txt['_multiwidget']);
// Start HTML
echo "
<p><strong>Available Text Widgets</strong></p>
<div class='txt_widget_class_wrap'>
<label>Title</label>
<select name='my_dashboard_widget_options[txt_widget]' id='txt_widget'>";
// Print options
foreach( $txt as $t )
{
printf(
'<option value="%s" %s>%s</option>',
$t['title'],
selected( $widget_options['txt_widget'], $t['title'], false ),
$t['title']
);
}
// End HTML
echo "
</select>
</div>
";
}