修改摘录编辑器底部的文本

时间:2016-12-30 作者:user2870142

我在自定义posttype中使用摘录,我想在摘录编辑器底部添加或修改现有文本。我不知道!有人能帮我吗?谢谢

1 个回复
最合适的回答,由SO网友:AddWeb Solution Pvt Ltd 整理而成

尝试以下代码。

add_filter( \'gettext\', \'excerpt_gettext\', 10, 2 );
function excerpt_gettext( $translation, $original ) {
 $post_type = get_post_type( $_GET[\'post\'] );
 if($post_type == \'your custom post type\') {
   $text = strpos($original, \'Excerpts are optional hand-crafted summaries of your content that can be used in your theme\');
   if ($text !== false) {
     return  \'My Custom Excerpt Discription\';
   }
 }
 return $translation;
}

NOTE: Change "your custom post type" with your actual post type name

希望这对你有帮助

相关推荐

Strip div From Excerpt

我在特定页面中有\\u extract(),我需要去掉一个div并保留文本,但只保留在该页面的摘录中。我相信我需要创建一个带有自定义摘录的函数,但我不知道该怎么做。测试了我在这里找到的几种解决方案,但没有任何效果。