我正在尝试在wordpress上插入一个php代码来进行后期评级。它通常在回声正常和到位的情况下工作。现在,使用此代码,而不是在“用户评级”之后显示评级:“它完全从‘动画信息’div中呈现出来,并显示在其上方。
代码是“.The\\u ratings()”完整代码应为:but“。if(function\\u exists(\'The\\u ratings\'){The\\u ratings()}。”不起作用,所以我不得不改变它。
这是完整的代码。基本上,如果分配给当前帖子的类别ID为4,则会显示此文本和图像。如果不是,则仅渲染图像。
有什么建议吗?
这是我正在使用的插件http://wordpress.org/extend/plugins/wp-postratings/
谢谢
<?php foreach((get_the_category()) as $category)
{ if($category->cat_ID = 4){ echo "<div class=\'anime-info\'>
<div class=\'anime-inf left\'>
<b>Anime Title:</b> ".get_post_meta( $post->ID, \'anime_title\', true )."<br />
<b>Creator:</b> ".get_post_meta( $post->ID, \'anime_creator\', true )."<br />
<b>Genres:</b> ".the_tags()." <br />
<b>Studio:</b> ".get_post_meta( $post->ID, \'anime_studio\', true )."<br />
<b>First aired at:</b> ".get_post_meta( $post->ID, \'anime_firstaired\', true )."<br />
<b># of Episodes:</b> ".get_post_meta( $post->ID, \'anime_episodes\', true )."<br />
<b>Official Website:</b> ".get_post_meta( $post->ID, \'anime_website\', true )."<br />
<b>Anime ii Rating:</b> ".get_post_meta( $post->ID, \'anime_revrating\', true )."<br /> <br />
<b>User Rating:</b>" . the_ratings() . "
</div>
<div class=\'post-image-inner right\'>
img src=\'".get_bloginfo( \'template_directory\' )."/timthumb.php?src=".get_post_meta( $post->ID, \'image_value\', true )."&w=225&h=246&zc=1\' />
</div>
</div>";
}else{ echo "<div class=\'post-image\'><img src=\'".get_bloginfo(\'template_directory\')."/timthumb.php?src=".get_post_meta( $post->ID, \'image_value\', true )."&w=529&h=253&zc=1\' /></div>";
}
}
?>