(1) 包含View Post按钮的Edit Permalink HTML通过get_sample_permalink_html
滤器你可能不得不preg_replace()
其中的view post按钮:
function my_get_sample_permalink_html($a){
return preg_replace("/<span id=\'view-post-btn\'>(.*)<\\/span>/",\'\',$a);
}
add_filter(\'get_sample_permalink_html\',\'my_get_sample_permalink_html\');
(2)帖子更新后的消息可以通过过滤进行更改
post_updated_messages
. 像这样:
function my_post_updated_messages( $messages ) {
$messages[\'post\'][1] = __(\'Post updated\');
return $messages;
}
add_filter(\'post_updated_messages\',\'my_post_updated_messages\');