get_theme_support_add_default_theme_supportsremove_theme_support_remove_theme_supportadd_post_type_support 引入 2.9.0 弃用 -add_theme_support – 注册对一个特定主题功能的支持: 这个函数允许开发者向他们的主题添加将被WordPress识别的功能,例如自定义标题或文章格式。注册...
在开发 WordPress 主题时,add_theme_support 函数非常有用。 add_theme_support 就像一把钥匙,可以打开各种 WordPress 的功能。 一般的,只需要在 functions.php 中使用 add_theme_support 函数就可以了。如果是使用钩子的话,务必使用 after_setup_theme 钩子;在 init 钩子中执行相关代码的话,就太迟了。 使用举例:...
在构成 WordPress 主题的functions.php 文件中,您可以找到 add_theme_support() 方法。您可以使用此功能向主题添加新功能并启用或禁用现有功能。您可以使用此功能来验证您的主题是否支持特定功能。其中一些功能包括帖子缩略图、自定义徽标和自定义标题图像。 推荐:[最新版]Slider Revolution滑块插件WordPress滑块插件 add_...
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 这个功能必须在 init hook 之前调用,所以必须在主题的 functions.php 文件或者在 '...
这个函数必须在主题的 functions.php 文件中去调用,如果想通过 hook 调用,则必须使用 after_setup_theme 这个 hook,因为 init hook 对于一些功能来说,已经太迟了。 用法 <?phpadd_theme_support($feature);?> 参数 $feature (string) (required) 要添加的主题功能的名称。
add_theme_support('custom-header'); Post Thumbnails(启用文章缩略图功能) 从WordPress2.9版本开始,可以给模板添加文章缩略图功能。操作方法很简单,只需要把下面的代码添加到functions.php里面。 add_theme_support('post-thumbnails'); 然后在要显示缩略图的地方放置下面的代码即可。
WordPress函数:add_theme_page()后台添加设置页面 9月 18, 2018 — LEMPA图文教程 Leo 函数add_theme_page会在后台“外观”菜单项下面新建一个菜单项,有助于我们自己看法主题时功能的扩展。 Table of Contents 函数介绍 参数详解 添加设置页面举例 官方文档 ...
Templates are pre-designed Pages & Blocks that can be inserted into any page with just one click. Learn more about it.
We hope this article helped you learn how to add dark mode to your WordPress website. You may also want to see our guide on how to choose a perfect color scheme for your WordPress site or see our expert picks for the best WordPress theme builders to customize your site. If you liked ...
函数描述:允许 WordPress 主题或插件给当前正在使用的主题注册一些特色功能!如果在主题中使用,应该将该函数写入 function.php 文件中;如果是在插件中使用该函数,那它必须挂在钩子上(HOOK)。 WordPress add_theme_support() 函数如果是挂在钩子上,那他必须挂在”after_setup_theme”钩子上,如果是在init系列上将会太...