SearchWP

searchwp\source\post\{$post_type}\attribution

Since: 4.0.0

Table of Contents

Control whether results from a post type can be configured to attribute all weight to another post ID.

Parameters

Type Parameter Default Since
Boolean $enabled true 4.0.0

Examples

All hooks should be added to your custom SearchWP Customizations Plugin.

Disable weight attribution for Pages

<?php
// Disable weight attribution for Pages in SearchWP.
add_filter( 'searchwp\source\post\page\attribution', '__return_false' );

How to use this code