WordPress 自定义启用/禁用多站点管理设置

时间:2021-06-28 03:08:10

标签: php wordpress custom-wordpress-pages wordpress-shortcode

我有这个多站点设置,您可以在其中启用和禁用全局分类法。但我不知道如何检索和保存数据。有人可以帮我吗?

这将是视图

enter image description here

这是我的代码

function network_settings_screen() {

<div class="wrap">
    <h1><?php esc_html_e( 'MCMultisite Distributor Global Settings', 'distributor' ); ?></h1>

    <form action="" method="post">
    <input type="hidden" name="dt_network_settings" value="1">
    <table class="form-table">
        <tbody>
            <tr>
                <th scope="row"><?php esc_html_e( 'Enable Multisite use one taxonomy db table.', 'distributor' ); ?></th>                   
            </tr>
            <tr>
                <td>
                    <ul class="media-handling">
                        <li>
                            <label><input type="radio" value="enable" name="dt_settings[network_taxonomy]">
                            <?php esc_html_e( 'Enable (default).', 'distributor' ); ?>
                            </label>
                        </li>
                        <li>
                            <label><input type="radio" value="disable" name="dt_settings[network_taxonomy]">
                            <?php esc_html_e( 'Disable', 'distributor' ); ?>
                            </label>
                        </li>
                    </ul>
                </td>
            </tr>
        </tbody>
    </table>

    <?php submit_button(); ?>

    </form>     
</div>  
<?php
}

0 个答案:

没有答案
相关问题