Enable attachments to be indexed in FacetWP on child sites.
Snippet Type
Execute on Child Sites
Snippet
add_filter( 'facetwp_indexer_query_args', function( $args ) {
$args['post_status'] = [ 'publish', 'inherit' ];
return $args;
});
Enable attachments to be indexed in FacetWP on child sites.
Snippet Type
Execute on Child Sites
Snippet
add_filter( 'facetwp_indexer_query_args', function( $args ) {
$args['post_status'] = [ 'publish', 'inherit' ];
return $args;
});
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.