nickdavis/random-testimonial

There is no license information available for the latest version (v2.1.1) of this package.

WordPress plugin to display a random testimonial on your website.

Maintainers

Package info

github.com/nickdavis/random-testimonial

Type:wordpress-plugin

pkg:composer/nickdavis/random-testimonial

Statistics

Installs: 108

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 1

v2.1.1 2018-08-08 14:52 UTC

This package is not auto-updated.

Last update: 2026-03-07 08:19:23 UTC


README

WordPress plugin which creates a testimonial post type and then shows one testimonial at random on your website.

NB. This plugin is aimed at developers and the random testimonial output must be added manually in your plugin or theme. The following is an example in a Genesis theme.

if ( function_exists( 'NickDavis\RandomTestimonial\do_random_testimonial' ) ) {
		add_action( 'genesis_after_content_sidebar_wrap', 'NickDavis\RandomTestimonial\do_random_testimonial' );
	}