gpt4 book ai didi

php - 如何在 wordpress 管理员中禁用 1/2 列屏幕布局单选按钮

转载 作者:行者123 更新时间:2023-12-04 05:24:08 25 4
gpt4 key购买 nike

我想隐藏出现在 wordpress 管理员自定义页面上的 1/2 列单选按钮,我应该怎么做? (好的,我可以用 javascript 来做,我要求的是原生 wordpress 解决方案)

这就是我说的 radio

enter image description here

这是页面的标记

<div class="wrap">

<?php screen_icon(); ?>

<h2><?php echo $title; ?></h2>

<div id="poststuff">

<form method="post" action="" enctype="multipart/form-data">
<?php wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false ); ?>
<?php wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false ); ?>

<div >
<div class="column-1-ai1ec timely">
<?php do_meta_boxes( $settings_page, 'left', null ); ?>
<?php
// Show the submit button only in the settings page and not in the Feeds page.
if ( $calendar_settings ) {
submit_button( esc_attr__( 'Update Settings', AI1EC_PLUGIN_NAME ), 'primary', 'ai1ec_save_settings' );
}
?>
</div>
<div class="column-2-ai1ec timely"><?php do_meta_boxes( $settings_page, 'right', null ); ?></div>
</div>
</form>

</div><!-- #poststuff -->

最佳答案

过滤器!即,对于 screen_layout_columnsget_user_option_screen_layout_post .一定要喜欢那些记录不充分的钩子(Hook)。

试试这个:

function force_single_column_layout( $columns ) {
$columns['post'] = 1;
return $columns;
}
add_filter( 'screen_layout_columns', 'force_single_column_layout' );

function force_single_column_layout_post() {
return 1;
}
add_filter( 'get_user_option_screen_layout_post', 'force_single_column_layout_post' );

关于php - 如何在 wordpress 管理员中禁用 1/2 列屏幕布局单选按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13406169/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com