I found that each question rendering through the qa/default-templates/single-question.php,I have added the below code in that page but it is not working, still it showing the like post buttons. Any other methodes to removethe like post buttons from each questions post.
add_filter('the_excerpt', 'removeWtiContent');
function removeWtiContent($content)
{
global $post;
if ($post->post_type == 'your_post_type') {
remove_filter('the_content', 'PutWtiLikePost');
}
return $content;
}
[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]