我在functions.php中获得了注册的侧边栏列表功能 一切在邮政选项页面上都很完美(wp-admin / post.php) 我可以通过我的功能获得所有注册的侧边栏。
但在类别编辑页面(wp-admin / edit-tags.php)中, 我甚至无法访问全局变量$ wp_registered_sidebars,也没有提及函数本身。
这是函数
function sidebars_list(){
global $wp_registered_sidebars;
$sidebar = array();
if (!empty($wp_registered_sidebars)):
foreach ($wp_registered_sidebars as $key => $access):
$sidebar[$key] = $access['name'];
endforeach;
endif;
var_dump($sidebar);
return $sidebar;
}
正如我所说它在后端编辑帖子和页面(前端也是如此)非常完美
我试着add_action它,没有运气。 甚至无法访问类别编辑页面中的全局变量。
global $wp_registered_sidebars;
var_dump($wp_registered_sidebars);
返回空数组。 但是当我在函数内部var_dump时它会按预期返回。 什么错了?
答案 0 :(得分:0)
正如您所说,未找到global
变量值。我假设你的变量被empty array
覆盖了。
我建议你改变变量名,然后用var_dump变量重试。
global $wp_registered_sidebars_custom;
var_dump($wp_registered_sidebars_custom);
答案 1 :(得分:-1)
浪费了大量时间进行搜索,并想出了这个解决方案。在加载侧边栏值之前,通过类别页面进行访问。因此,您可以通过在该位置放置占位符div并使用Ajax& amp;中的下拉列表或复选框加载值来解决问题。页面加载后的jQuery。这对你有用。
将以下代码粘贴到主题的functions.php中
// Call Actio to modify form on Add New Category
add_action( 'category_add_form_fields', 'edit_category_fields');
// Call Action to modify form on Edit Category
add_action( 'category_edit_form_fields', 'edit_category_fields');
function edit_category_fields($tag, $taxonomy)
{
// Get the Current Value if any
$leftsidebar_to_show = get_term_meta( $tag->term_id, 'leftsidebar_to_show', true);
?>
<tr class="form-field">
<th scope="row" valign="top"><label for="leftsidebar_to_show">Select Left Sidebar to Show</label></th>
<td>
<div id="leftsidebar_to_show_wrap">
<select name="leftsidebar_to_show" id="leftsidebar_to_show">
</select>
</div>
<!-- Store the current value as hidden input in order to Get Selected Option in jQuery -->
<input type="hidden" id="leftsidebar_to_show_val" value="<?php echo $leftsidebar_to_show; ?>" />
<!-- Category ID as hidden Input -->
<input type="hidden" name="term_id_val" value="<?php echo $tag->term_id; ?>" />
</td>
</tr>
<?php
}
// Call Actio to Save Values on Add New Category
add_action( 'edited_category', 'save_category', 10, 2);
// Call Action to Save Values on Edit Category
add_action( 'create_category', 'save_category', 10, 2);
function save_category(){
update_term_meta( $_POST['term_id_val'], 'leftsidebar_to_show', $_POST['leftsidebar_to_show']);
}
// Function to enqueue Javascript file in admin
function my_enqueue($hook) {
wp_enqueue_script( 'my_custom_script', get_template_directory_uri() . '/js/sidebars.js' );
}
add_action( 'admin_enqueue_scripts', 'my_enqueue' );
// Action Function to get Sidebars through Ajax Call
function prefix_ajax_get_sidebars() {
$sidebarval = $_REQUEST['sidebarval'];
$sidebarid = $_REQUEST['sidebarid'];
$string = '<select id="'.$sidebarid.'" name="'.$sidebarid.'">';
foreach ( $GLOBALS['wp_registered_sidebars'] as $sidebar ) {
if($sidebarval == $sidebar['id']){
$selected = ' selected';
}else{
$selected = '';
}
$string .= '<option value="'.$sidebar['id'].'"'.$selected.'>'.$sidebar['name'].'</option>';
}
$string .= '</select>';
echo $string;
die();
}
add_action( 'wp_ajax_get_sidebars', 'prefix_ajax_get_sidebars' );
add_action('wp_ajax_nopriv_get_sidebars', 'prefix_ajax_get_sidebars');
创建名为sidebars.js的文件并粘贴以下代码
(function ($) {
"use strict";
$(document).ready(function(){
var leftsidebar_to_show_val = $('#leftsidebar_to_show_val').val();
$.post(
ajaxurl,
{
'action': 'get_sidebars',
'sidebarval': leftsidebar_to_show_val,
'sidebarid' : 'leftsidebar_to_show'
},
function(response){
$('#leftsidebar_to_show_wrap').html(response);
});
});
})(jQuery);
将上面创建的文件移动到主题的js文件夹中。现在,您可以在添加和放大器中看到列为下拉列表的侧边栏。编辑类别表单。
希望这很清楚。
谢谢!