How to edit frontend dashboard footer text.

Add this to your child theme’s functions.php:


add_filter( 'wpcfe_footer_credits', 'custom_footer_text' );
function custom_footer_text(){
	echo 'Your content here.';
}