I am using the simple add_filter
function to output the content.
add_filter('the_content', 'my_name');
function my_name( $content ){
// code
return $content;
}
When I activate the plug-in output of the function my_name
is shown in all pages. How can I restrict the output to only one page?