php facetwp索引文件扩展名

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php facetwp索引文件扩展名相关的知识,希望对你有一定的参考价值。

<?php
/** index a url or file path value as the extension to create a file type facet
 ** facet datasource needs to be a value that contains a url or file path for the file that includes the file extension
 **/

add_filter( 'facetwp_index_row', function( $params, $class ) {
    if ( 'my_facet_name' == $params['facet_name'] ) {
        $raw_value = $params['facet_value'];
        $extension = end( explode ( '.', $raw_value) );
        if ( !$extension )
          return false; // don't index if this is empty
        $params['facet_value'] = $extension;
        $params['facet_display_value'] = $extension;
    }
    return $params;
}, 10, 2 );

以上是关于php facetwp索引文件扩展名的主要内容,如果未能解决你的问题,请参考以下文章

php facetwp索引新媒体

php facetwp索引一个PODS关系字段

php facetwp索引关系

php facetwp索引日期

php facetwp索引类及其子类

php facetwp索引只有父母