将管理文本区域更改为集成的WP编辑器

时间:2014-07-15 作者:tcornell05

我目前正在为我的页面制作一个主题,该主题利用wordpress的内置图库系统用php/jquery制作幻灯片。

(帖子->新建帖子->添加媒体->创建库)

因为默认情况下,图库只允许缩略图,所以我让主题获取插入的数据并将其应用到幻灯片中。以下是一个示例:

http://dev.sharetv.com/news/2014/07/test-gallery/

标题是您看到的标题,在库中的“描述”文本区域是您看到所有虚拟文本的地方。

Now, My Question:

如何将内置的描述文本区域(见图)(位于库后端)更改为内置的wordpress编辑器(tinyMCE)?我们这里的作者并不是HTML方面的佼佼者,他们想让HTML尽可能简单。

enter image description here

Is it possible to do this without editing the wp-admin files? 即使没有,有人能告诉我处理这个问题的正确方向吗?

提前感谢!

1 个回复
最合适的回答,由SO网友:deflime 整理而成

尝试Advanced Custom Fields 只需添加所见即所得编辑器。

步骤1Step 1

瞧!And Voila!

在前端显示输入

<?php
  /* Put the attachment ID in place of 999 */
  // Display
  the_field(\'yea\', 999);
  // In case you need to don\'t want to display it right away
  get_field(\'yea\', 999);
?>

结束

相关推荐

如何增加nggallery carousel模板的缩略图大小

我想增加nggallery carousel模板的缩略图大小。检查此链接http://arkamediaworks.com/rel_test/uncatagorize/hello-2/?pid=6是否有更好的代码来执行此操作。以下是代码:<!-- Thumbnail list --> <?php foreach ( $images as $image ) : ?> <?php if ( $image->hidden ) continue; ?>&#