https://github.com/freshsystems/wp-acf-markdown-field
Adds a Markdown field type to Advanced Custom Fields.
https://github.com/freshsystems/wp-acf-markdown-field
acf acf-field markdown wordpress wordpress-plugin
Last synced: 20 days ago
JSON representation
Adds a Markdown field type to Advanced Custom Fields.
- Host: GitHub
- URL: https://github.com/freshsystems/wp-acf-markdown-field
- Owner: freshsystems
- Created: 2022-03-14T12:07:40.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-08-20T08:57:51.000Z (over 2 years ago)
- Last Synced: 2025-09-30T10:57:29.050Z (4 months ago)
- Topics: acf, acf-field, markdown, wordpress, wordpress-plugin
- Language: PHP
- Homepage:
- Size: 817 KB
- Stars: 15
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# 📝 ACF Markdown Field
**A WordPress plugin that includes a markdown field type for use with the ACF plugin.**
## Features
- Adds a `markdown` field type for use with the [Advanced Custom Fields](https://www.advancedcustomfields.com) plugin.
- Supports the WP media picker for embedding images into markdown content.

## Requirements
- Advanced Custom Fields `>= 5`
- PHP `>= 5.4`
## Installation
Use Composer to install the **mu-plugin**.
```
composer require freshsystems/wp-acf-markdown-field
```
If your WordPress project doesn't support [directory-based mu-plugins](https://github.com/roots/bedrock-autoloader), or you'd prefer to install the plugin as a regular plugin, you can override the default install path in your project's composer file (ensuring that you use the correct path to your project's plugin directory).
```
...
"extra": {
"installer-paths": {
"web/app/plugins/{$name}/": ["freshsystems/wp-acf-markdown-field"]
}
}
...
```
If you're not using [Composer with WordPress](https://roots.io/bedrock-vs-regular-wordpress-install/), you can alternatively download the ZIP archive from the [releases](https://github.com/freshsystems/wp-acf-markdown-field/releases) page and upload/install the plugin manually.