php facetwp索引附件并添加媒体类型数据源

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php facetwp索引附件并添加媒体类型数据源相关的知识,希望对你有一定的参考价值。

<?php
/** inherit adds attachment indexing **/
add_filter( 'facetwp_indexer_query_args', function( $args ) {
    $args['post_status'] = array( 'publish', 'inherit' );
    return $args;
});

/** post_mime_type is the column in the posts table to add **/
add_filter( 'facetwp_facet_sources', function( $sources ) {
    $sources['posts']['choices']['post_mime_type'] = 'Media Type';
    return $sources;
});

/** modifies string for mine type
 ** example image/png becomes image
 **/
add_filter( 'facetwp_index_row', function( $params, $class ) {
    if ( 'post_mime_type' == $params['facet_source'] ) {
		  $value = $params['facet_display_value'];
		  $value = substr( $value, 0, strpos( $value, '/' ) );
		  $params['facet_value'] = $params['facet_display_value'] = $value;
    }
    return $params;
}, 10, 2 );

以上是关于php facetwp索引附件并添加媒体类型数据源的主要内容,如果未能解决你的问题,请参考以下文章

php facetwp索引只有一种帖子类型

php facetwp索引相关帖子类型中的字段

php facetwp索引相关帖子类型中的字段

php 重力形成多文件上传器字段到wordpress媒体附件并添加到CPT的元

php facetwp搜索附件

php 带有附件ID的布局构建器中的facetwp自定义字段