

==Description==

The <b>"gwolle_gb_entries_list_before"</b> filter is used to add html before the list of entries at the frontend.

You can use this filter as:

<code><?php add_filter( 'gwolle_gb_entries_list_before', 'filter_function_name' ) ?></code>

Where 'filter_function_name' is the function WordPress should call when the filter is being used.

'''filter_function_name''' should be a unique function name. It cannot match any other function name already declared.


==Examples==


function my_gwolle_gb_entries_list_before( $entries_html ) {
	// $entries_html is a string
	$entries_html .= 'Added string';
	return $entries_html;
}
add_filter( 'gwolle_gb_entries_list_before', 'my_gwolle_gb_entries_list_before', 10, 1 );

