I have a video site and I use a plugin that displays a report button. I have edited it so that it only shows the report button on the pages that have no children (the videos) successfully.
$pagekids = get_pages("child_of=".$post->ID."&sort_column=menu_order");
if ($pagekids) {}
else {
return $report;
}
My problem is, it is also showing up on my posts which I don't want it to do, I only want it to show up on pages.
Is there anyway to have it only show up on pages not posts.