wordpress add the html to the content by functoin php

Solutions on MaxInterview for wordpress add the html to the content by functoin php by the best coders in the world

showing results for - "wordpress add the html to the content by functoin php"
Julie
01 Jan 2019
1add_action('the_post', function($post, $query){
2	if(is_single()) {
3		echo "Test";
4	}
5}, 10, 2);