get_theme_support_add_default_theme_supportsremove_theme_support_remove_theme_supportadd_post_type_support 引入 2.9.0 弃用 -add_theme_support – 注册对一个特定主题功能的支持: 这个函数允许开发者向他们的主题添加将被WordPress识别的功能,例如自定义标题或文章格式。注册...
add_theme_support('post-thumbnails');//所有日志类型都支持。add_theme_support('post-thumbnails',array('post'));// Posts onlyadd_theme_support('post-thumbnails',array('page'));// Pages onlyadd_theme_support('post-thumbnails',array('post','movie'));// Posts and Movies 这个功能必须在 ini...
如果在主题中使用,应该将该函数写入 function.php 文件中;如果是在插件中使用该函数,那它必须挂在钩子上(HOOK)。 WordPress add_theme_support() 函数如果是挂在钩子上,那他必须挂在”after_setup_theme”钩子上,如果是在init系列上将会太晚,以致部分特色功能将失效! 使用方法: <?phpadd_theme_support($feature...
在开发 WordPress 主题时,add_theme_support 函数非常有用。 add_theme_support 就像一把钥匙,可以打开各种 WordPress 的功能。 一般的,只需要在 functions.php 中使用 add_theme_support 函数就可以了。如果是使用钩子的话,务必使用 after_setup_theme 钩子;在 init 钩子中执行相关代码的话,就太迟了。 使用举例:...
这个函数必须在主题的 functions.php 文件中去调用,如果想通过 hook 调用,则必须使用 after_setup_theme 这个 hook,因为 init hook 对于一些功能来说,已经太迟了。 用法 <?phpadd_theme_support($feature);?> 参数 $feature (string) (required) 要添加的主题功能的名称。
首先要确保框架里已经安装好element pro插件,下面是使用简码,来实现效果,在element中找到简码,并且在WordPress后台主题编辑器中,找到function.php文件, 显示产品的分类,下面是效果图 在function.php中添加如下代码, add_theme_support(
请记住,真正激活背景支持的元素是 add_theme_support() 函数及其中的所有内容。这段代码可以在 WordPress 仪表盘中打开背景功能,你可以在本文的后续教程中使用它。还可以通过 functions.php 文件为整个主题添加默认背景图片。只需转到前面代码中带有 default-image 值的区域,然后在 => 后'' 之间的空白处添加图片的...
1.add_theme_support WordPress 默认隐藏了很多功能,我们可以通过 add_theme_support() 函数启用它们,add_theme_support可以在主题的functions.php中调用,如需在hook中调用的必须在after_theme_setup中调用; add_theme_support( 'post-thumbnails' ,[array( 'post' )]); 启用指定类型文章的缩略图功能,不指定第二...
首先配置一组预定义的渐变集。使用theme-support选项执行此操作editor-gradient-presets,然后传递一个代表渐变集的数组: add_theme_support( 'editor-gradient-presets', array( array( 'name'=>__('Vivid cyan blue to vivid purple','themeLangDomain'), ...
add_theme_support( 'post-formats', array ( 'aside', 'gallery', 'quote', 'image', 'video' ) ); 进一步了解发布格式。 初始设置示例 包括所有上述功能将给你一个如下所示的functions.php文件。 添加了代码注释以便将来的清晰度。 如本示例底部所示,您必须添加所需的add_action()语句以确保myfirsttheme...