问题描述
有没有办法改变自定义帖子类型的发布按钮的文本来说一些不同?例如,保存而不是发布。还要删除草稿按钮?
最佳解决方案
如果您查看/wp-admin/edit-form-advanced.php
,您会发现元框:
add_meta_box('submitdiv', __('Publish'), 'post_submit_meta_box', $post_type, 'side', 'core');
注意__('Publish')
– 功能__()
导致 translate()
您得到过滤器'gettext'
。
有两种方法可以解决您的问题:1. 在一个专门的功能中处理字符串 (确保匹配正确的文本域!) 或 2. 使用更通用的方法。
@Rarst 刚刚发布了版本 1,所以我将添加版本 2. 🙂
<?php
/*
Plugin Name: Retranslate
Description: Adds translations.
Version: 0.1
Author: Thomas Scholz
Author URI: http://toscho.de
License: GPL v2
*/
class Toscho_Retrans {
// store the options
protected $params;
/**
* Set up basic information
*
* @param array $options
* @return void
*/
public function __construct( array $options )
{
$defaults = array (
'domain' => 'default'
, 'context' => 'backend'
, 'replacements' => array ()
, 'post_type' => array ( 'post' )
);
$this->params = array_merge( $defaults, $options );
// When to add the filter
$hook = 'backend' == $this->params['context']
? 'admin_head' : 'template_redirect';
add_action( $hook, array ( $this, 'register_filter' ) );
}
/**
* Conatiner for add_filter()
* @return void
*/
public function register_filter()
{
add_filter( 'gettext', array ( $this, 'translate' ), 10, 3 );
}
/**
* The real working code.
*
* @param string $translated
* @param string $original
* @param string $domain
* @return string
*/
public function translate( $translated, $original, $domain )
{
// exit early
if ( 'backend' == $this->params['context'] )
{
global $post_type;
if ( ! empty ( $post_type )
&& ! in_array( $post_type, $this->params['post_type'] ) )
{
return $translated;
}
}
if ( $this->params['domain'] !== $domain )
{
return $translated;
}
// Finally replace
return strtr( $original, $this->params['replacements'] );
}
}
// Sample code
// Replace 'Publish' with 'Save' and 'Preview' with 'Lurk' on pages and posts
$Toscho_Retrans = new Toscho_Retrans(
array (
'replacements' => array (
'Publish' => 'Save'
, 'Preview' => 'Lurk'
)
, 'post_type' => array ( 'page', 'post' )
)
);
您不需要将代码用作插件。把它包含在你的主题的 functions.php 就够了。
Update
要删除原始的保存按钮 (不知道’draft’ 按钮是什么),请将以下代码添加到您的 functions.php /a 插件中:
add_action( 'admin_print_footer_scripts', 'remove_save_button' );
function remove_save_button()
{
?>
<script>
jQuery(document).ready(function($){$('#save-post').remove();});
</script><?php
}
是的,这很丑陋
次佳解决方案
hakre 建议使用翻译过滤器的代码将是这样的:
add_filter( 'gettext', 'change_publish_button', 10, 2 );
function change_publish_button( $translation, $text ) {
if ( $text == 'Publish' )
return 'Save';
return $translation;
}
第三种解决方案
这不是一个完整的答案,而是一些方向:显示的任何文本都超过了翻译过滤器,因此可以在回调函数 (hook) 中进行更改。所以如果挂钩只是在你想要更改的页面上注册,那么工作就完成了。
草稿按钮可以通过 CSS 隐藏来进行”removed” 。 CSS 可以被注入到管理员的<head>
标签中,另一个回调。我认为这个过滤器叫做 admin_head
。按钮仍然在那里,例如如果用户切换了 CSS,那就有些脏了。
参考文献
注:本文内容整合自 Google/Baidu/Bing 辅助翻译的英文资料结果。如果您对结果不满意,可以加入我们改善翻译效果:薇晓朵技术论坛。