1 Star 0 Fork 1

hzy46/reviews-wordpress

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
content-multi_category.php 933 Bytes
一键复制 编辑 原始数据 按行查看 历史
Your Name 提交于 2016-07-05 13:47 . init
<div id="post-<?php the_ID(); ?>" class="clearfix multi_cat_artical">
<div class="multi_cat_image">
<?php if ( has_post_thumbnail() ) {
$img = get_post_thumb();
$params = array( 'width' => 60, 'height' => 60, 'crop' => true);
echo '<img src="'.bfi_thumb( $img, $params ).'" alt="'.the_title_attribute(array("echo" => 0) ).'" width="60" height="60" />';
}
else {
$nothumb = get_template_directory_uri() . '/images/noim.png';
echo '<img src="'.$nothumb.'" alt="'.the_title_attribute(array("echo" => 0) ).'" width="60" height="60" />';
}
?>
</div>
<div class="multi_cat_info">
<div class="multi_cat_title"><a href="<?php the_permalink(); ?>" ><?php the_title(); ?></a></div>
<div class="rcnt_meta">
<?php $category = get_the_category($post->ID); $first_cat = $category[0]->term_id;?>
<?php meta_small( false, $first_cat, true, false ); ?>
</div>
</div>
</div>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hzy46/reviews-wordpress.git
git@gitee.com:hzy46/reviews-wordpress.git
hzy46
reviews-wordpress
reviews-wordpress
master

搜索帮助