Sunday, 20 August 2017

Simple Custom Plugin In Wordpress

Here is the code for Simple Custom Plugin In Wordpress

/*
Plugin Name: Custom Plugin
Description: A very basic test plugin
Version: 1.0
Author: Ajay Malhotra
*/

function add_bottom_content( $content ) {
$content .= "Your Reviews On ".get_the_title().", Please!";
return $content;
}

add_filter( 'the_content', 'add_bottom_content' );

No comments:

Post a Comment

Google Map Filter Api Example

Here is Google Map Filter Api Example: