Display Some text in some specific category not all category

I want to display some texts in specific category in single post based on category in wordpress.. how can i do that

for example posts in news category display some text.(not all category)

Thank you

Topic single categories Wordpress

Category Web


Place this code in single.php where you need to show it:

<?php 
$catarray = get_the_category( $post->ID );
foreach ($catarray as $cat) {
    $catid = $cat->term_id;

    if ($catid == 5) {
      echo 'TEXT HERE';
    }
    if ($catid == 7) {
      echo 'ANOTHER TEXT';
    }

}
?>

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.