Remove hyperlink from name field

add_filter('preprocess_comment', 'remove_links_from_comment_author'); function remove_links_from_comment_author($commentdata) { // Regular expression to detect hyperlinks $pattern = '/

Pete Tran
<10

Meta Lead Gen Pixel

Michael Woolsey
<10

Post class update

add_filter( 'body_class', function( $classes ) { $acc_type=tmwp_get_user_role(); if (!$acc_type) $acc_type='anonymous'; return array_merge( $classes, array('acc-type-'.strtolower($acc_type),tmwp_get_page_class()) ); }…

Add user registration date

/* * Creating a column (it is also possible to remove some default ones) */ add_filter(…

Failed login: Don't show if username is correct

If a user's login fails, don't tell them whether the username or password was incorrect

1 72 73 74 75 76 210