函数共65篇
WordPress函数wp_get_archives()-龙网 - 教程、网赚、安全、免费资源

WordPress函数wp_get_archives()

WordPress的widget里提供的文章索引模板,他可以让你的WordPress博客的侧边栏按月度存档,方便读者,方便搜索引擎。但默认显示的是所有月度归档,这对有着两年,甚至两年以上历史的老博客来说,...
Seraph的头像-龙网 - 教程、网赚、安全、免费资源钻石会员Seraph10个月前
060126
WordPress函数:comment_form() 让你的 WordPress 评论表单随心所愿-龙网 - 教程、网赚、安全、免费资源

WordPress函数:comment_form() 让你的 WordPress 评论表单随心所愿

wordpress默认评论表单的字段都只有4个,昵称、邮箱、网址、内容;评论是存在wp_comments表中的,根据自己的需要在制作自己的主题时,如何灵活的添加和删除自定义的字段呢?例如:tel电话字段,...
Seraph的头像-龙网 - 教程、网赚、安全、免费资源钻石会员Seraph10个月前
036124
WordPress函数get_search_form()-龙网 - 教程、网赚、安全、免费资源

WordPress函数get_search_form()

get_search_form( bool $echo = true ) 显示搜索框。 介绍 默认会调用 searchform.php 文件,如果主题中没有这个文件,会使用 wp-includes/general-template.php 中的 get_search_form 函数。 ...
Seraph的头像-龙网 - 教程、网赚、安全、免费资源钻石会员Seraph10个月前
041135
WordPress函数title()应用替换优化-龙网 - 教程、网赚、安全、免费资源

WordPress函数title()应用替换优化

为了文章更好的被搜索引擎收录,有时需要WordPress主题根据不同的页面动态生成文章标题,这时要使用函数wp_title()函数,优化我们的页面,更利于seo。 函数原型 <?php wp_title( $sep, $echo...
Seraph的头像-龙网 - 教程、网赚、安全、免费资源钻石会员Seraph10个月前
09954
WordPress函数the_author_link()-龙网 - 教程、网赚、安全、免费资源

WordPress函数the_author_link()

介绍 the_author_link() 是显示文章作者的网站链接,该链接会加在 the_author() 显示的公开名秒文本中。 网站链接来自 仪表盘 -> 用户 -> 我的个人资料 中的“站点”所填写的值。 并且该...
Seraph的头像-龙网 - 教程、网赚、安全、免费资源钻石会员Seraph10个月前
04592
WordPress使用register_post_type函数创建自定义文章类型-龙网 - 教程、网赚、安全、免费资源

WordPress使用register_post_type函数创建自定义文章类型

WordPress自定义文章类型 是WordPress自3.0版本以后新增的一个非常实用的特色功能。WordPress内置的两种文章类型:Post(文章)和 Page(页面),Post一般作为经常更新的文章使用(如博客日志)...
Seraph的头像-龙网 - 教程、网赚、安全、免费资源钻石会员Seraph10个月前
095133
WordPress函数WordPress禁用RSS Feed-龙网 - 教程、网赚、安全、免费资源

WordPress函数WordPress禁用RSS Feed

WordPress提供了很多RSS Feed的功能,除了全站文章订阅,还有评论订阅,然后目前使用RSS订阅功能的人越来越少,加快WordPress的运行效率,可以直接禁用RSS Feed。 在 WordPress主题 的 function...
Seraph的头像-龙网 - 教程、网赚、安全、免费资源钻石会员Seraph10个月前
05427
wp_list_comments()使用回调函数自定义评论展示方式-龙网 - 教程、网赚、安全、免费资源

wp_list_comments()使用回调函数自定义评论展示方式

wp_list_comments()是用于读取文章或者页面评论数据的函数,把 WordPress 的评论功能很好的进行了模块化,wp_list_comments 函数在主题中配合comments_template 函数联合使用可以很好的将 WordP...
Seraph的头像-龙网 - 教程、网赚、安全、免费资源钻石会员Seraph10个月前
08568
WordPress函数get_template_part()-龙网 - 教程、网赚、安全、免费资源

WordPress函数get_template_part()

介绍 get_template_part( string $slug, string $name = null ) get_template_part()是用于调用主题目录中的文件。 参数 $slug (string) (必填) The slug name for the generic template. $name...
Seraph的头像-龙网 - 教程、网赚、安全、免费资源钻石会员Seraph10个月前
08944
WordPress函数wp register sidebar widget添加自定义小工具-龙网 - 教程、网赚、安全、免费资源

WordPress函数wp register sidebar widget添加自定义小工具

wp register sidebar widget 取代了register_sidebar_widget函数,它提供了函数接口,方便的制作小工具。 用法 <?php wp_register_sidebar_widget( $id, $name, $output_callback, $options,...
Seraph的头像-龙网 - 教程、网赚、安全、免费资源钻石会员Seraph10个月前
03767
WordPress注册js函数wp_enqueue_script()-龙网 - 教程、网赚、安全、免费资源

WordPress注册js函数wp_enqueue_script()

wp_enqueue_script( string $handle, string $src = '', array $deps = array(), string|bool|null $ver = false, bool $in_footer = false ) wp_enqueue_script() 是WordPress注册和引用一个js...
Seraph的头像-龙网 - 教程、网赚、安全、免费资源钻石会员Seraph10个月前
0100125
WordPress函数:register post type (自定义文章类型)用法和范例-龙网 - 教程、网赚、安全、免费资源

WordPress函数:register post type (自定义文章类型)用法和范例

register post type() 函数支持我们创建一个自定义的文章类型,或者修改已有的文章类型,该函数不能在init动作之前使用。 用法 <?php register_post_type( $post_type, $args ) ?> 参数 $...
Seraph的头像-龙网 - 教程、网赚、安全、免费资源钻石会员Seraph10个月前
05734
WordPress函数get_calendar()日历标签-龙网 - 教程、网赚、安全、免费资源

WordPress函数get_calendar()日历标签

介绍 get_calendar()是一个WordPress日历标签,可以在 WordPress主题 的任意模板中使用,并不需要在 the_loop 中。 默认会显示当前年月的一个日历,并且会在有日志的日期中带上日期的 date 链接...
Seraph的头像-龙网 - 教程、网赚、安全、免费资源钻石会员Seraph10个月前
059120
WordPress函数:register_sidebar()创建主题侧边栏-龙网 - 教程、网赚、安全、免费资源

WordPress函数:register_sidebar()创建主题侧边栏

制作的wordpress主题默认是不支持WordPress后台 – 外观 – 小工具的,需要手动在functions.php里注册我们的边栏小工具。 1、用法: 使用函数register_sidebar()注册一个单独的侧边栏区域和返回...
Seraph的头像-龙网 - 教程、网赚、安全、免费资源钻石会员Seraph10个月前
097104
WordPress函数 get_footer()-龙网 - 教程、网赚、安全、免费资源

WordPress函数 get_footer()

介绍 包含当前主题目录中的footer.php模板文件。 如果指定了名称,则将包含专门的页脚 -{name}.php。 如果主题不包含footer.php文件,则将包含默认主题 wp-includes/theme-compat/footer.php 中...
Seraph的头像-龙网 - 教程、网赚、安全、免费资源钻石会员Seraph10个月前
09356
WordPress使用函数wp_register_sidebar_widget添加随机文章小工具-龙网 - 教程、网赚、安全、免费资源

WordPress使用函数wp_register_sidebar_widget添加随机文章小工具

wp_register_sidebar_widget函数让我们很轻松的在边栏添加小工具,做一个随机文章的小工具,当然这个函数添加的小工具只能使用一次,你如果反复多次多边栏调用,采用下面的方法。 WordPress 开...
Seraph的头像-龙网 - 教程、网赚、安全、免费资源钻石会员Seraph10个月前
09953
WordPress函数the_author()-龙网 - 教程、网赚、安全、免费资源

WordPress函数the_author()

介绍 the_author() 是显示作者公开名的函数,此函数必须在 the_loop 循环标签内使用才有效。 使用 <?php the_author(); ?> 示例 显示公开名: <p>This post was written by <?ph...
Seraph的头像-龙网 - 教程、网赚、安全、免费资源钻石会员Seraph10个月前
07090
WordPress函数:wp_tag_cloud(标签云)详解和举例-龙网 - 教程、网赚、安全、免费资源

WordPress函数:wp_tag_cloud(标签云)详解和举例

wp_tag_cloud() 函数的作用是用来标签云的,可以根据每个标签所关联的文章次数来定义字体大小、标签排序等属性。从 2.8 版本开始,添加了 分类法(taxonomy)参数,这就意味着,除了 标签(tags...
Seraph的头像-龙网 - 教程、网赚、安全、免费资源钻石会员Seraph10个月前
058111
WordPress函数single_post_title()-龙网 - 教程、网赚、安全、免费资源

WordPress函数single_post_title()

介绍 显示single、page页面标题,这个标签不必在the_loop循环中,只要在single、page页面即可。 使用 <?php single_post_title(); ?> 参数 $prefix (string) (可选) 显示在标题前的文本。...
Seraph的头像-龙网 - 教程、网赚、安全、免费资源钻石会员Seraph10个月前
036125
Bootstrap替换WordPress的get_search_form()搜索样式-龙网 - 教程、网赚、安全、免费资源

Bootstrap替换WordPress的get_search_form()搜索样式

get_search_form()本函数的作用主要是包含searchform.php,它的作用和get_header()、get_sidebar()、get_footer()类似的,在需要插入搜索框的地方,调用该函数即可。如果主题里面没有searchform...
Seraph的头像-龙网 - 教程、网赚、安全、免费资源钻石会员Seraph10个月前
08282