Customize results post list
-
Hello, I’m trying to reorder results post list with this hook and according to “apply_filters( ‘relevanssi_admin_search_element’, $post_element );”:
function swap_function($post_element) { $post_element = <<<EOH <li>$blog_name <strong>$title</strong> $edit_link $pinning_buttons <br /> $post->post_excerpt<br /> $score_label $post->relevance_score $pinned</li> EOH; return $post_element; } add_filter('relevanssi_admin_search_element', 'swap_function');
But it is not working, it’ll just show empty results
Any help would be greatly appreciated! Thanks
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Customize results post list’ is closed to new replies.