当前位置:网站首页 > WordPress插件 > 正文
YM快速选项最好的WordPress常用插件下载博客插件模块
作者:98wpeu发布时间:2024-04-11分类:WordPress插件浏览:254
导读:YM快速选项安装如何使用首先,打开你的functions.php主题文件。接下来的所有步骤都将在其中进行。1.添加`admin_menu`动作//RegisterYMFOcu...

首先,打开你的functions.php
主题文件。接下来的所有步骤都将在其中进行。
// Register YMFO custom optionsadd_action( 'admin_menu', function () { // Next code here});
2.创建选项页面例如,它将是一个联系人页面。
$contacts_page = new YMFO_Page( 'Contacts', 'contacts' );
第一个函数参数是页面标题,第二个参数是页面块。
3.创建选项部分例如,它将是一个带有社交媒体链接的部分。
$contacts_page->add_section( 'Social media', 'social_media' );
第一个函数参数是区段标题,第二个是区段slug。
4.将选项字段添加到部分$contacts_page->add_field( 'YouTube', 'youtube_link', 'url', 'social_media' );$contacts_page->add_field( 'Facebook', 'facebook_link', 'url', 'social_media' );
第一个函数参数是字段标题,第二个是字段slug,第三个是字段类型(您可以在下面找到允许的类型),第四个是字段段slug。
它--S完成了!你可以在侧边栏的WordPress管理区域找到新的选项页面。
我们的结果代码是:
// Register YMFO custom optionsadd_action( 'admin_menu', function () { // Create page $contacts_page = new YMFO_Page( 'Contacts', 'contacts' ); // Create section $contacts_page->add_section( 'Social media', 'social_media' ); // Create fields $contacts_page->add_field( 'YouTube', 'youtube_link', 'url', 'social_media' ); $contacts_page->add_field( 'Facebook', 'facebook_link', 'url', 'social_media' );});
要获得期权价值,请使用ymfo_get_option()
。
例如,让-S打印指向您的YouTube频道的链接:
<a href="<?php echo esc_attr( ymfo_get_option( 'contacts', 'youtube_link' ) ); ?>">YouTube</a>
允许的字段typestexttelemailurldatedatetime-localmonthweektimecolorInstallation参观插件&>添加新项搜索对于-ym快速选项-安装并激活插件页面中的YM Fast选项没有关于这个插件的评论。
相关推荐
- TheAVCoach WeatherLink 最好的WordPress通用插件下载 博客插件模块
- Geo Target Geo JavaScript 最好的WordPress常用插件下载 博客插件模块
- Simple Post View Counter - Clean and Fast Post View Analytics 最好的WordPress常用插件下载 博客插件模块
- Wonderful Webhook Alerts最好的WordPress通用插件下载博客插件模块
- Header Junk Remover 最好的WordPress通用插件下载 博客插件模块
- 最好的WordPress常用插件下载 博客插件模块
- AI Auto Post Image Generator 最好的WordPress常用插件下载 博客插件模块
- 捕获屏幕截图PDF 最好的WordPress通用插件下载 博客插件模块
- Booxboo.de Publishing Distribution 最好的WordPress通用插件下载 博客插件模块
- MksDdn Form最好的WordPress通用插件下载 博客插件模块
- WordPress插件排行
-
- 1羊驼机器人最好的WordPress常用插件下载博客插件模块
- 2自动更新发布日期最好的WordPress常用插件下载博客插件模块
- 3WooCommerce最好的WordPress常用插件下载博客插件模块的相关产品
- 4Promaker Chat 最好的WordPress通用插件下载 博客插件模块
- 5WordPress官方最好的获取回复WordPress常用插件下载博客插件模块
- 6元素聚合器Forms最好的WordPress常用插件下载博客插件模块
- 7IP信息记录器最好的WordPress常用插件下载博客插件模块
- 8Linkly for WooCommerce最好的WordPress常用插件下载博客插件模块
- 9Img to rss最好的wordpress常用插件下载博客插件模块
- 最近发表