分享好友 最新动态首页 最新动态分类 切换频道
wordpress子比主题(Zbill)美化插件.zip
2024-12-25 18:17
<?php if ( ! defined( 'ABSPATH' ) ) { die; } // Cannot access directly. // // Set a unique slug-like ID // $prefix = '_prefix_my_options'; // // Create options // CSF::createOptions( $prefix, array( 'menu_title' => 'CSF Demo', 'menu_slug' => 'csf-demo', 'theme' => 'light' ) ); // // Create a section // CSF::createSection( $prefix, array( 'title' => 'Overview', 'icon' => 'fas fa-rocket', 'fields' => array( // // A text field // array( 'id' => 'opt-text', 'type' => 'text', 'title' => 'Text', ), array( 'id' => 'opt-textarea', 'type' => 'textarea', 'title' => 'Textarea', 'help' => 'The help text of the field.', ), array( 'id' => 'opt-upload', 'type' => 'upload', 'title' => 'Upload', ), array( 'id' => 'opt-switcher', 'type' => 'switcher', 'title' => 'Switcher', 'label' => 'The label text of the switcher.', ), array( 'id' => 'opt-color', 'type' => 'color', 'title' => 'Color', 'default' => '#3498db', ), array( 'id' => 'opt-checkbox', 'type' => 'checkbox', 'title' => 'Checkbox', 'label' => 'The label text of the checkbox.', ), array( 'id' => 'opt-radio', 'type' => 'radio', 'title' => 'Radio', 'options' => array( 'yes' => 'Yes, Please.', 'no' => 'No, Thank you.', ), 'default' => 'yes', ), array( 'id' => 'opt-select', 'type' => 'select', 'title' => 'Select', 'placeholder' => 'Select an option', 'options' => array( 'opt-1' => 'Option 1', 'opt-2' => 'Option 2', 'opt-3' => 'Option 3', ), ), array( 'id' => 'opt-image-select', 'type' => 'image_select', 'title' => 'Image Select', 'options' => array( 'opt-1' => 'http://codestarframework.com/assets/images/placeholder/100x80-2ecc71.gif', 'opt-2' => 'http://codestarframework.com/assets/images/placeholder/100x80-e74c3c.gif', 'opt-3' => 'http://codestarframework.com/assets/images/placeholder/100x80-ffbc00.gif', 'opt-4' => 'http://codestarframework.com/assets/images/placeholder/100x80-3498db.gif', 'opt-5' => 'http://codestarframework.com/assets/images/placeholder/100x80-555555.gif', ), 'default' => 'opt-1', ), array( 'id' => 'opt-background', 'type' => 'background', 'title' => 'Background', ), array( 'type' => 'notice', 'style' => 'success', 'content' => 'A <strong>notice</strong> field with <strong>success</strong> style.', ), array( 'id' => 'opt-icon', 'type' => 'icon', 'title' => 'Icon', ), array( 'id' => 'opt-alt-text', 'type' => 'text', 'title' => 'Text', ), array( 'id' => 'opt-alt-textarea', 'type' => 'textarea', 'title' => 'Textarea', 'subtitle' => 'A textarea with shortcoder.', 'shortcoder' => 'csf_demo_shortcodes', ), ) ) ); // // Basic Fields // CSF::createSection( $prefix, array( 'id' => 'basic_fields', 'title' => 'Basic Fields', 'icon' => 'fas fa-plus-circle', ) ); // // Field: text // CSF::createSection( $prefix, array( 'parent' => 'basic_fields', 'title' => 'Text', 'icon' => 'far fa-square', 'description' => 'Visit documentation for more details on this field: <a href=https://download.csdn.net/download/huayula/"http://codestarframework.com/documentation/#/fields?id=text" target="_blank">Field: text</a>', 'fields' => array( array( 'id' => 'opt-text-1', 'type' => 'text', 'title' => 'Text', ), array( 'id' => 'opt-text-2', 'type' => 'text', 'title' => 'Text with default', 'default' => 'This is default value bla bla bla', ), array( 'id' => 'opt-text-3', 'type' => 'text', 'title' => 'Text field ingenuity', 'subtitle' => 'The field of subtitle text.', 'help' => 'The field of help text.', 'before' => '<p>The field of before text.</p>', 'after' => '<p>The field of after text.</p>', ), array( 'id' => 'opt-text-4', 'type' => 'text', 'title' => 'Text with placeholder', 'placeholder' => 'Typed something...' ), array( 'id' => 'opt-text-5', 'type' => 'text', 'title' => 'Text readonly', 'attributes' => array( 'readonly' => 'readonly' ), 'default' => 'readonly text field, can not be changed' ), array( 'id' => 'opt-text-6', 'type' => 'text', 'title' => 'Text with maxlength (5)', 'attributes' => array( 'maxlength' => '5' ), 'default' => 'abc', ), array( 'id' => 'opt-text-7', 'type' => 'text', 'title' => 'Text usign custom styles', 'attributes' => array( 'style' => 'width: 100%; height: 40px; border-color: #93C054;' ), ), array( 'id' => 'opt-text-8', 'type' => 'text', 'after' => '<p>It shows full width if there is no field of title.</p>', ), ) ) ); // // Field: textarea // CSF::createSection( $prefix, array( 'parent' => 'basic_fields', 'title' => 'Textarea', 'icon' => 'far fa-square', 'description' => 'Visit documentation for more details on this field: <a href=https://download.csdn.net/download/huayula/"http://codestarframework.com/documentation/#/fields?id=textarea" target="_blank">Field: textrea</a>', 'fields' => array( array( 'id' => 'opt-textarea-1', 'type' => 'textarea', 'title' => 'Textarea', ), array( 'id' => 'opt-textarea-2', 'type' => 'textarea', 'title' => 'Textarea wtih default', 'default' => 'This is default value bla bla bla', ), array( 'id' => 'opt-textarea-3', 'type' => 'textarea', 'title' => 'Text with placeholder', 'placeholder' => 'Typed something...' ), array( 'id' => 'opt-textarea-4', 'type' => 'textarea', 'title' => 'Textarea with shortcoder', 'shortcoder' => 'csf_demo_shortcodes', ), array( 'id' => 'opt-textarea-5', 'type' => 'textarea', 'title' => 'Textarea field ingenuity', 'subtitle' => 'The field of subtitle text.', 'help' => 'The field of help text.', 'before' => '<p>The field of before text.</p>', 'after' => '<p>The field of after text.</p>', ), array( 'id' => 'opt-textarea-6', 'type' => 'textarea', 'after' => '<p>It shows full width if there is no field of title.</p>', ), ) ) ); // // Field: select // CSF::createSection( $prefix, array( 'parent' => 'basic_fields', 'title' => 'Select', 'icon' => 'fas fa-list', 'description' => 'Visit documentation for more details on this field: <a href=https://download.csdn.net/download/huayula/"http://codestarframework.com/documentation/#/fields?id=select" target="_blank">Field: select</a>', 'fields' => array( array( 'id' => 'opt-select-1', 'type' => 'select', 'title' => 'Select', 'placeholder' => 'Select an option', 'options' => array( 'opt-1' => 'Option 1', 'opt-2' => 'Option 2', 'opt-3' => 'Option 3', ), ), array( 'id' => 'opt-select-2', 'type' => 'select', 'title' => 'Select with default', 'placeholder' => 'Select an option', 'options' => array( 'opt-1' => 'Option 1', 'opt-2' => 'Option 2', 'opt-3' => 'Option 3', ),
最新文章
本地生活抖音同城商家流量推广运营解决方案
本地生活抖音同城商家流量推广运营解决方案 部分资料预览 资料部分是网络整理,仅供学习参考。抖音运营资料合集(完整资料包含以下内容) 目录 抖音本地生活运营方案,帮助本地生活服务商家在抖音平台上实现品牌营
python中级线上考试真题 python institute资格认证初级pcep中级pcap
# 1 PCAPPython1. PCAP1.1 Primitives1.2 Combinations1.3 Abstraction1.4 Pattern2. Python 中名词解释2.1 function 函数2.2 procedure 程序2.3 method 方法3. Python 解释器4. 分层程序设计2.1 primitives2.2 combinations2.3 abstractio
Word 设置背景图片大小的详细指南320
在 Word 文档中添加背景图片可以增强视觉效果并增添文档的专业感。但是,调整背景图片的大小以使其与页面或特定页面元素相匹配非常重要。本文将提供分步指南,说明如何在 Word 中设置背景图片的大小,并包括一些有用的技巧和故障排除提示。
正版资料免费资料大全十点半|词语释义解释落实
  这篇文章旨在为用户带来正版和免费资料的全面解读,尤其是对于那些在资料获取上存在疑问的读者。我们将通过详细的释义和解释,确保信息的准确落实。本文将覆盖正版资料的重要性、免费资料的获取途径以及如何正确解读和使用这些资料。通
装修老房改造要注意什么?拆改时要以安全和实用为主!
  如今装修老房改造已经屡见不鲜,对原有装修进行翻新可轻松改善生活环境和条件。不过考虑到老房的房龄较高,且大都会存在老化的问题,不可随意进行主体拆除或改造,而是要掌握一些拆改方法和技巧,在满足生活需求的同时,避免遇到不必要
外链规划专家指导:在抖音上进行外链建设的全面指南156
随着抖音成为一个备受欢迎的社交媒体平台,企业意识到其在寻找新受众和推广其产品或服务方面的巨大潜力。然而,与其他社交媒体平台不同,抖音上的外链建设需要采用不同的方法。本指南将提供一个全面的计划和执行方案,指导您在抖音上进行有
真人做A免费观看网友认为该内容引发了广泛讨论,部分人表示支持观看以了解真实情况,而另一些人则对此持反对态度,认为应关注更有意义的内容
  最新消息:某社交平台近日上线了一部名为“真人做A”的视频,引发了网友们的热烈讨论。该内容以其真实的表现形式吸引了大量观众,然而也伴随着不同的声音。  不少网友表示支持观看“真人做A”,认为这种内容能够让人更好地理解现实生
震撼上市!!!699元就能买一台国产“iPhone”
乐视S3 Pro内置了一块5000mAh的大容量,并支持18W快充技术,这使得用户在长时间使用手机的情况下,也能获得持久的电力支持。在摄影方面,乐视S3 Pro后置了一颗5000万像素的,能够拍摄出清晰、细腻的照片。无论是日常拍照还是记录生活,乐视
微信开发者工具之页面跳转
微信开发者工具中的`app.json`文件是一个关键配置文件,用于管理微信小程序项目的全局配置。当你提到跳转页面时,`app.json`中并不直接定义页面间的跳转,但你可以通过以下几个相关的配置来间接实现页面间的导航:1. **pages**数组:在这个
用AI生成超逼真美女写真,简单易上手的神器大推荐!
DALL-E:作为OpenAI推出的工具,它使用强大的神经网络生成独一无二的图像。DALL-E可以通过文字描述生成艺术作品,对于想要个性化照片的用户来说非常方便。唯一的缺点是生成的结果有时会出现不准确的情况,尤其是复杂的场景。Artbreeder:这
相关文章
推荐文章
发表评论
0评