我想包起来<strong></strong>
在“注销”字样周围:
add_filter( \'gettext\', \'wpse17709_gettext\', 10, 2 );
function wpse17709_gettext( $custom_translation, $login_texts ) {
// Messages
if ( \'You are now logged out.\' == $login_texts ) { return \'\'; } // Log out message
return $translation
}
。。。但是,将HTML元素添加到文本字符串会破坏我的页面。
如何添加<strong></strong>
是否指向此消息文本?除了gettext
?
最合适的回答,由SO网友:Nathan Powell 整理而成
这允许专门针对loggedout
消息,同时保留所有其他消息。Here is more documentation on the filter.
add_filter( \'wp_login_errors\', \'my_logout_message\' );
function my_logout_message( $errors ){
if ( isset( $errors->errors[\'loggedout\'] ) ){
$errors->errors[\'loggedout\'][0] = \'This is the <strong style="color:red;">logged out</strong> message.\';
}
return $errors;
}