sanitize_option清理和验证WordPress选项值如何使用
sanitize_option 函数在WordPress中用于清理和验证选项值。每个选项都有一个预期的数据类型和格式,sanitize_option 函数确保保存到数据库中的选项值符合这些预期。这个函数特别适用于在regis……
2024年3月16日
WordPress的使用get_posts获取文章的时候date_query都有哪些书写方式呢!下面给大家这些建议,这样在用WordPress判断某些时间段文章输出的时候有帮助。
$args = array(
'date_query' => array(
array(
'after' => '1 week ago'
)
)
);
$posts = get_posts($args);
2. 获取2023年的所有文章:
$args = array(
'date_query' => array(
array(
'year' => '2023'
)
)
);
$posts = get_posts($args);
3. 获取2023年11月份的所有文章:
$args = array(
'date_query' => array(
array(
'year' => '2023',
'month' => '11'
)
)
);
$posts = get_posts($args);
4. 获取2023年11月1日之后的文章:
$args = array(
'date_query' => array(
array(
'after' => '2023-11-01'
)
)
);
$posts = get_posts($args);
5. 获取2023年11月1日至2023年11月30日之间的文章:
$args = array(
'date_query' => array(
array(
'after' => '2023-11-01',
'before' => '2023-11-30'
)
)
);
$posts = get_posts($args);
6. 获取2023年11月1日至现在之间的文章:
$args = array(
'date_query' => array(
array(
'after' => '2023-11-01'
),
array(
'before' => 'now'
)
)
);
$posts = get_posts($args);
本文由「
WordPress贰佰技 」 原创或整理后发布,欢迎分享和转发。
原文地址:
https://www.wp200.com/p/118.html 发布于
2023年4月9日