wp_update_term_count_now
函数
wp_update_term_count_now ( $terms, $taxonomy )
- 参数
-
-
(array)
$terms
The term_taxonomy_id of terms to update.- Required: 是
-
(string)
$taxonomy
The context of the term.- Required: 是
-
(array)
- 返回值
-
- (true) Always true when complete.
- 定义位置
-
-
wp-includes/taxonomy.php
, line 3484
-
wp-includes/taxonomy.php
- 引入
- 2.5.0
- 弃用
- –
Performs term count update immediately.
function wp_update_term_count_now( $terms, $taxonomy ) { $terms = array_map( 'intval', $terms ); $taxonomy = get_taxonomy( $taxonomy ); if ( ! empty( $taxonomy->update_count_callback ) ) { call_user_func( $taxonomy->update_count_callback, $terms, $taxonomy ); } else { $object_types = (array) $taxonomy->object_type; foreach ( $object_types as &$object_type ) { if ( 0 === strpos( $object_type, 'attachment:' ) ) { list( $object_type ) = explode( ':', $object_type ); } } if ( array_filter( $object_types, 'post_type_exists' ) == $object_types ) { // Only post types are attached to this taxonomy. _update_post_term_count( $terms, $taxonomy ); } else { // Default count updater. _update_generic_term_count( $terms, $taxonomy ); } } clean_term_cache( $terms, '', false ); return true; }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。