The hook allows to change "Not found" text if no one posts were found in the table
Example:
1 2 3 4 5 6 | add_filter('tableon_no_found_text', function($text, $table_id) { return sprintf(TABLEON_Vocabulary::get('Find more posts %s'), TABLEON_HELPER::draw_html_item('a', [ 'href' => 'https://pluginus.net', 'target' => '_blank' ], TABLEON_Vocabulary::get('here'))); }, 10, 2); |