This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Adds additional processing for ACF field with the name my_acf_relationship_field | |
| function my_searchwp_acf_relationship_processor( $customFieldValue, $customFieldName, $thePost ){ | |
| $content_to_index = ''; | |
| if ( 'partner_filter' == $customFieldName ) { | |
| $partner_filter = $customFieldValue[0]; | |
| } | |
| preg_match( '/^layouts_\d+_post_type/i', $customFieldName, $matches ); | |
| if( 'post_type' == $customFieldName || ( ! empty( $matches ) && is_array( $customFieldValue ) && ! empty( $customFieldValue ) ) ){ | |
| $post_type = $customFieldValue[0]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function my_dlm_cpt_dlm_download_args( $args ) { | |
| $args['exclude_from_search'] = false; | |
| return $args; | |
| } | |
| add_filter( 'dlm_cpt_dlm_download_args', 'my_dlm_cpt_dlm_download_args' ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function my_remove_searchwp_live_search_theme_css() { | |
| wp_dequeue_style( 'searchwp-live-search' ); | |
| } | |
| add_action( 'wp_enqueue_scripts', 'my_remove_searchwp_live_search_theme_css', 99 ); |
NewerOlder