Search by

nichestudio / acf-markdown

Markdown-enhanced ACF textarea

Maintainers

Package info

github.com/nichestudio/ACF-Markdown

Homepage

Issues

Type:wordpress-plugin

pkg:composer/nichestudio/acf-markdown

Transparency log

Statistics

Installs: 2 615

Dependents: 0

Suggesters: 0

Stars: 1

1.2.0 2026-08-05 11:06 UTC

This package is auto-updated.

Last update: 2026-08-18 23:15:51 UTC


README

Markdown-enhanced ACF textarea field.

Composer: niche/acf-markdown
Repo: https://github.com/nicheonline/ACF-Markdown

Works with repeaters and frontend forms using Advanced Forms.

Uses

Requires

  • PHP >= 7.4
  • Composer
  • ACF v5+

Installation

composer require niche/acf-markdown

Formerly published as nichestudio/acf-markdown (GitHub org redirect: nichestudionicheonline).

Customise Editor

Override the Inscryb editor options:

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;
} );

Changelog

1.2.0

  • Renamed Composer package to niche/acf-markdown
  • Declared Markdown_Field::$plugin_settings (PHP 8.2+ dynamic property deprecation)
  • Raised PHP requirement to 7.4+