您现在的位置是:首页 > 网站制作 > WordpressWordpress
WordPress函数get_calendar()日历标签
杰帅2023-08-06【Wordpress】人已围观
简介get_calendar()是一个WordPress日历标签,可以在 WordPress主题 的任意模板中使用,并不需要在 the_loop 中。
介绍
get_calendar()是一个WordPress日历标签,可以在 WordPress主题 的任意模板中使用,并不需要在 the_loop 中。
默认会显示当前年月的一个日历,并且会在有日志的日期中带上日期的 date 链接。
使用
<?php get_calendar( $initial, $echo ); ?>
参数
$initial
(boolean) (optional) If true, the day will be displayed using a one-letter initial; if false, an abbreviation based on your localization will be used.
Default: True
False - causes "Sunday" to be displayed as "Sun"
True - causes it to be "S"
$echo
(boolean) (optional) Determines whether or not the calendar should be displayed.
Default: True
False - Returns calendar, but does not echo it to screen
True - Echos calendar, but does not return it to a variable
示例
默认使用
显示日历,突出显示任何带帖子的日期。
<?php get_calendar(); ?>
显示工作日缩写
仅使用一个字母的首字母显示天数; 在1.5中,根据您的WordPress本地化显示初始值。
<?php get_calendar(true); ?>
Tags:wordpress主题 wordpress函数 WordPress建站
很赞哦! ()
相关文章
随机图文
-
WordPress 页面模板(Page Template)下拉列表不显示的原因及解决方法
WordPress 的自定义页面模板是一个非常强大好用的功能,使用它新建一些静态页面(Page),添加上一些数据调用的函数,再在网页上做一个导航连接到对应的页面就可以实现很多自定义的功 -
wordpress发布文章HTML标签被自动过滤掉该如何处理?
wordpress发布文章时很多html标签都会自动过滤掉,造成了文章中无法添加<style></style><script></script>等标签。那么该如何如何处理呢? 解决方法一: 将wp-includes文件夹下 -
wp_reset_postdata 和 wp_reset_query 的作用与区别
什么时候使用wp_reset_query,什么时候用wp_reset_postdata? -
wordpress 上传的图片不显示的问题 base64,data:image/gif