

==Description==

This filter is deprecated. Please use "gwolle_gb_author_content_label".

The <b>"gwolle_gb_content_label"</b> filter is used to change the text of the label for the textarea of the content at the frontend.
This filter is deprecated, please use gwolle_gb_author_content_label.

You can use this filter as:

<code><?php add_filter( 'gwolle_gb_content_label', '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_content_label( $label ) {
	_deprecated_function( __FUNCTION__, ' 4.0.0', 'gwolle_gb_author_content_label()' );

	return $label;
}
add_filter( 'gwolle_gb_content_label', 'my_gwolle_gb_content_label', 10, 1 );

