Custom Meta Filter
-
When I add the following code in my themes functions.php, I will no longer access wp-admin. White page only. Though I removed the code from functions.php continues white page. I have to manually delete the folder e-mail users via FTP so wp-admin back working again.
What could be wrong?
I have tried this
add_action( ‘mailusers_user_custom_meta_filter’, ‘first_name_alex’, 5 );
function first_name_alex()
{
mailusers_register_user_custom_meta_filter(‘First Name: Alex’, ‘first_name’, ‘Alex’);
}AND ALSO THIS
add_action( ‘mailusers_group_custom_meta_filter’, ‘send_to_police_department’, 5 );
function send_to_police_department()
{
mailusers_register_group_custom_meta_filter(‘Police Department’, ‘department’, ‘police’);
}
The topic ‘Custom Meta Filter’ is closed to new replies.