dudley / feature-repeater
Module to render a repeating set of featured content blocks.
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Type:package
pkg:composer/dudley/feature-repeater
This package is not auto-updated.
Last update: 2025-10-16 01:20:31 UTC
README
This package is designed for use with the Dudley plugin. You
can include it in your project by requiring this repository in the
Dudley plugin's composer.json file.
In the require object of composer.json, add this line:
"dudley\feature-repeater": "dev-master"
How to Use in Template Files
Like all modules in the Dudley Patterns Framework, action names are generated from
both the object's $meta_type property and its $action_name property.
The format is dudley_{$meta_type}_{$action_name}.
Thus, if you are using Advanced Custom Fields, the code to include in your
template file to render the feature repeater would be:
<?php do_action( 'dudley_acf_feature_repeater' ); ?>
How to Override the Markup in Your Own Template File
- If none exists, create a directory in your theme named
dudley-modules - Add a file named
feature-repeater.phpin thedudley-modulesdirectory.