Skip to main contentSkip to footer

Setting post_type to page doesn’t work

For some reason setting the post_type query variable to page doesn’t have the desired effect. Other post types (post, custom post types) work, but page doesn’t do anything.

This is not a Relevanssi bug, but a WordPress feature (see this trac ticket). If the user inputs a bad value to the post_type query variable, WordPress changes it to any. For some reason that happens also when the post_type is set to page, even though that should be a valid value.

There’s nothing Relevanssi can do about this. However, there’s a fix. Relevanssi introduces a new query variable post_types, which happily accepts page. Use that, if you need to filter by post type.

(Update 19.1.2021: This WordPress bug still isn’t fixed!)

Your account

Not logged in. Log in to see your license details.

Search

Popular Resources

Integrating Post Views Counter stats

…in the weight calculations is straightforward. The best tool to use is the relevanssi_results filter hook. It lets us modify the weights of the posts. For each post, we calculate a weight multiplier based on the visitor stats and then multiple the weight of the post with that. I add……= 1; } $relevanssi_pvc_weights[ $post_id ] = $weight; } } return $relevanssi_pvc_weights[ $post_id ] ?? 1; } add_filter( ‘relevanssi_results’, ‘rlv_pvc_weights’ ); function rlv_pvc_weights( $post_weights ) { foreach ( $post_weights as $post_id => $weight ) { $post_weights[ $post_id ] = rlv_pvc_weight( intval( $post_id ) ) * $weight; } return $post_weights; }……$relevanssi_pvc_weights[ $post_stats->id ] = $post_stats->count; } $max_visits = max( $relevanssi_pvc_weights ); $factor = $max_visits / 1000; // This controls the normalization. foreach ( $relevanssi_pvc_weights as $post_id => $visits ) { $weight = $visits / $factor; if ( $weight < 1 ) { $weight = 1; } $relevanssi_pvc_weights[ $post_id ] =…

Related Posts:

Comment Section:

Leave a Reply

Your email address will not be published. Required fields are marked *

Fill out this field
Fill out this field
Please enter a valid email address.
You need to agree with the terms to proceed