nichestudio/acf-markdown

Markdown增强型ACF文本区域

安装次数: 2,368

依赖: 0

建议者: 0

安全: 0

星标: 1

关注者: 1

分支: 1

开放问题: 0

类型:wordpress-plugin

1.1.1 2018-05-21 07:17 UTC

This package is auto-updated.

Last update: 2024-09-18 18:51:22 UTC


README

Markdown增强型ACF文本区域。

支持与重复器和前端表单(使用 Advanced Forms)一起使用。

使用

要求

  • PHP >=5.4
  • Composer
  • ACF v5

安装

composer require nichestudio/acf-markdown

自定义编辑器

覆盖 Inscryb 编辑器选项

acf.add_filter( 'niche_markdown/inscrybmde_args', function ( args, field ) {

	if ( field.o.id === 'field_xxxx' ) {
		args[ 'placeholder' ] = 'Enter your content using Markdown';
	}

	return args;
} );