I'd prefer to have the 'new' Widgets Section/Panel (that extends to the widget areas) drop down to the bottom of list in Customizer.
I've tried:
$wp_customize->get_panel('widgets')->priority = 300;
--- or ---
$wp_customize->get_section('widgets')->priority = 300;
But neither of those lines seem to affect my target.
Anyone know what the proper ID of Widgets is?
I'd prefer to have the 'new' Widgets Section/Panel (that extends to the widget areas) drop down to the bottom of list in Customizer.
I've tried:
$wp_customize->get_panel('widgets')->priority = 300;
--- or ---
$wp_customize->get_section('widgets')->priority = 300;
But neither of those lines seem to affect my target.
Anyone know what the proper ID of Widgets is?
Share Improve this question asked Sep 15, 2014 at 18:54 bishlessbishless 215 bronze badges1 Answer
Reset to default 0In case you never figured it out:
$wp_customize->get_panel('widgets')->priority = 300;
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744698732a4588651.html
评论列表(0条)