专业WORDPRESS主题设计制作

add_settings_field( )函数(set的add)

发布于: 2022-08-19

add_settings_field( )函数的作用主要是为WordPress后台-Settings添加一些新的自定义变量(此处可能用词不当,仿照织梦自定义变量为此处命名)
用法

<?php 
add_settings_field( 
    string $id, 
    string $title, 
    callable $callback, 
    string $page, 
    string $section = 'default', 
    array $args = array() 
) ;
?>

例子:

add_settings_field( )函数
<?php 
add_settings_field(
    'address', // ID
    '地址', // 显示在页面的标题即label
    'xk_textbox_callback', // 回掉
    'general', // 'general', 'reading', 'writing', 'discussion', 'media'
    'xk_settings_section', // section ID
    array( // The $args
        'address' // Should match Option ID
    )
);
?>
WP技术资料 wordpress模板制作、wordpress主题开发相关知识常见问题总结
MORE
服务电话:
0533-2765967

微信 13280692153