This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Adjust title of posts in search results

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Adjust title of posts in search results Reply To: Adjust title of posts in search results

#22147
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

Thank you, I think there was a minor error within the code, and I also changed the output to display the custom HTML before the title. Please try this one instead.

add_filter( 'asp_results', 'asp_custom_field_to_results', 10, 1 ); 
function asp_custom_field_to_results( $results ) {
  $custom_field = 'trade_status'; 

  foreach ($results as $k=>&$r) {
    if ($r->content_type != 'pagepost') continue;
    if ( function_exists('get_field') )
        $trade_status  = get_field( $custom_field, $r->id, true ); // ACF support
    else
        $trade_status  = get_post_meta( $r->id, $custom_field, true );
    // Modify the post title to add the meta value
    if ( !empty($trade_status) ) {
      if ( in_array('30', $trade_status) ) {
        $html = '<h2 class="new">New</h2>';
      } else if ( in_array('20', $trade_status) ) {
        $html = '<h2 class="active">Active</h2>';
      } else if ( in_array('10', $trade_status) ) {
        $html = '<h2 class="closed">Closed</h2>';
      } else {
        $html = '';
      }
      $r->title = $html . $r->title;
    }
  }
 
  return $results;
}