السلام عليكم ورحمة الله وبراكاته

لقد قمت بتحميل إضافة bbpress وقمت بتنصيبها.

ولكن في المكان أو الصفحة التي من المفترض أن تظهر بها أقسام المنتديات تظهر هذه الرسالة.

Catchable fatal error: Object of class WP_Error could not be converted to string in /home/tatrezel/public_html/wp-content/themes/shahbaTheme/templates/post_meta.php on line 12

وهذا هو ما مكتوب بملف post_meta.php :

 

<?php
$cats = wp_get_post_categories( get_the_id() );
if(!is_single()){
    $cats = array( array_pop($cats) );
}
if(is_single() or shahbaHelper::get_option('category_able') ){
foreach ($cats as $cat_ID) {
?>
    <span class="entry_cat_bg cat<?php echo $cat_ID ?>_bg">
        <a href=""<?php">">
            <?php echo get_the_category_by_ID( $cat_ID ) ?>
        </a>
    </span>
<?php }} ?>
<span class="comments">
    <a href=""<?php">"><i class="fa fa-comment-o"></i><?php comments_number( '0', '1', '%' ); ?></a>
</span>
<?php if(is_single() or shahbaHelper::get_option('author_able') ){ ?>
<span class="writer">
    <a href=""<?php">">
        <i class="fa fa-user"></i>
        <?php the_author(); ?>
    </a>
</span>
<?php } ?>
<span class="date"><i class="fa fa-clock-o"></i><time datetime=""><?php echo get_the_date(); ?></time></span>
<?php if(is_single()){ ?>
<?php } ?>