php 的functions.php
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 的functions.php相关的知识,希望对你有一定的参考价值。
<?php
function my_find_expired_events( $ids ) {
$args = array(
'post_type' => 'tribe_events',
'nopaging' => true,
'fields' => 'ids',
'meta_query' => array(
array(
'key' => '_EventEndDate',
'value' => date( 'Y-m-d H:i:s' ),
'compare' => '<',
'type' => 'DATETIME',
),
),
);
$expired_events = get_posts( $args );
$ids = array_merge( $ids, $expired_events );
$ids = array_map( 'absint', $ids );
$ids = array_unique( $ids );
return $ids;
}
add_filter( 'searchwp_exclude', 'my_find_expired_events' );
以上是关于php 的functions.php的主要内容,如果未能解决你的问题,请参考以下文章
php WordPress的-的functions.php
php 的functions.php
php 的functions.php
php 的functions.phpを分割
php 的functions.php
php 额外的functions.php