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.

Installs: 82

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 0

Open Issues: 1

Type:wordpress-plugin

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

This package is not auto-updated.

Last update: 2024-04-19 23:25:37 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' );
	}