by/first-image

A plugin to get first image from Redactor Field.

2.0.0 2022-12-29 12:37 UTC

This package is not auto-updated.

Last update: 2024-04-18 18:19:18 UTC


README

A plugin to get first image from Redactor Field.

Requirements

This plugin requires Craft CMS 3.0.0 or later.

Installation

To install the plugin, follow these instructions.

  1. Open your terminal and go to your Craft project:

     cd /path/to/project
    
  2. Then tell Composer to load the plugin:

     composer require by/first-image
    
  3. In the Control Panel, go to Settings → Plugins and click the “Install” button for First Image.

Using First Image

There are two ways of getting first image from a redactor field:

{{ entry.body | getFirstImage }}

or

{% set image = getFirstImage(entry.body) %}

This will output the source of the first image found, which then can be used in <img> tag.

Brought to you by Bhashkar Yadav