该插件尚未通过WordPress的最新3个主要版本进行测试。 当与较新版本的WordPress一起使用时,可能不再受到维护或支持,并且可能会存在兼容性问题。

Content Attachments

描述

Wraps post attachments that are not images in handy tags that allow easy styling with CSS. It also adds a class to the attachment containing the mime type.

Use add_filter('content-attachments/template/paragraph', $html) to customized the HTML markup to render the attachment. Defaults to:

<a class="{{classes}}" type="{{mime-type}}" href="{{url}}" {{extra_attrs}}>
    <span class="content-attachment-text">{{text}}</span>
    <span><i class="content-attachment-icon"></i></span>
</a>

For this plugin to work properly, “wpautop” (i.e. automatic wrapping in <p> tags of lines written in WYSIWYG editors) must be enabled on WYSIWYG content editors of both WordPress and ACF. This is the default behavior.

Please report issues or ask questions on (GitHub)[https://github.com/themecraftstudio/wordpress-content-attachments]

常见问题

Where should I report issues or get help?

GitHub Please report problems directly on the plugin’s main development repository

评价

此插件暂无评价。

贡献者及开发者

「Content Attachments」是开源软件。 以下人员对此插件做出了贡献。

贡献者

更新日志

1.1.0

Release Date – 27 October 2019

  • Fix – Disabled libxml warnings to hide warnings when the markup contains custom elements

1.0.0

Release Date – 31 January 2019

  • New – {{extra_attrs}} placeholder to include all other attributes present in the anchor
  • Deprecated – {{class}} in favor of {{classes}}

0.3.1

Release Date – 31 August 2018

  • Fix – load HTML content as UTF-8

0.3.0

  • New – filter ‘content-attachments/template/paragraph’
  • Deprecated – filter ‘content-attachments_template’

0.0.1

Release Date – 21 April 2017

  • Initial release