<?php
/**
* Your Inspiration Themes
*
* @package WordPress
* @subpackage Your Inspiration Themes
* @author Your Inspiration Themes Team <info@yithemes.com>
*
* This source file is subject to the GNU GENERAL PUBLIC LICENSE (GPL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://www.gnu.org/licenses/gpl-3.0.txt
*/
if( !is_single() && !yit_get_option( 'blog-post-formats-list' ) )
{ yit_get_template( 'blog/elegant/post-formats/standard.php' ); return; }
$has_thumbnail = ( ! has_post_thumbnail() || ( ! is_single() && ! yit_get_option( 'blog-show-featured' ) ) || ( is_single() && ! yit_get_option( 'blog-show-featured-single' ) ) ) ? false : true; ?>
<div class="<?php if ( ! $has_thumbnail ) echo 'without ' ?>thumbnail">
<div class="row">
<!-- post meta -->
<?php if ( get_post_type() == 'post' ) : ?>
<div class="meta group span3">
<div>
<?php
$link = get_permalink();
if( get_the_title() == '' )
{ $title = __( '(this post does not have a title)', 'yit' ); }
else
{ $title = get_the_title(); }
if ( is_single() )
{ yit_string( "<h1 class=\"post-title\"><a href=\"$link\">", $title, "</a></h1>" ); }
else
{ yit_string( "<h2 class=\"post-title\"><a href=\"$link\">", $title, "</a></h2>" ); }
?>
<?php if( yit_get_option( 'blog-show-author' ) ) : ?><p class="author"><?php echo yit_get_icon( 'blog-author-icon', true ) ?><span><?php _e( 'Author:', 'yit' ) ?></span> <?php the_author_posts_link() ?></p><?php endif; ?>
<?php if( yit_get_option( 'blog-show-date' ) ) : ?><p class="date"><?php echo yit_get_icon( 'blog-date-icon', true ) ?><span><?php _e( 'Date:', 'yit') ?></span> <?php echo get_the_date() ?></p><?php endif; ?>
<?php edit_post_link( __( 'Edit', 'yit' ), '<p class="edit-link"><i class="icon-pencil"></i>', '</p>' ); ?>
</div>
<div>
<?php if( yit_get_option( 'blog-show-comments' ) ) : ?><p class="comments"><?php echo yit_get_icon( 'blog-comments-icon', true ) ?><span><?php comments_popup_link( __( '<span>Comments:</span> 0', 'yit' ), __( '<span>Comments:</span> 1', 'yit' ), __( '<span>Comments:</span> %', 'yit' ) ); ?></span></p><?php endif ?>
</div>
<div>
<?php echo do_shortcode( '[share title="' . __( 'Share on', 'yit' ) . '" socials="facebook, twitter, google, pinterest"]' ); ?>
</div>
</div>
<?php endif ?>
<!-- post title -->
<div class="the-content span6">
<div>
<?php
if( $has_thumbnail ) {
if( ( !is_single() || ( get_post_format() != 'video' && get_post_format() != 'gallery' ) ) ) {
the_post_thumbnail( 'blog_elegant', array( 'class' => 'thumbnail' ) );
}
}
?>
<?php
if( !is_single() && yit_get_option( 'blog-post-formats-list' ) ) :
if( get_post_format( get_the_ID() ) == 'audio' ) : ?>
<div class="soundcloud-frame">
<?php
$url = yit_get_post_meta( get_the_ID(), '_format_audio' );
$iframe = ( bool ) yit_get_post_meta( get_the_ID(), '_format_audio_iframe' );
$show_artwork = ( bool ) yit_get_post_meta( get_the_ID(), '_format_audio_artwork' );
$show_comments = ( bool ) yit_get_post_meta( get_the_ID(), '_format_audio_comments' );
$auto_play = ( bool ) yit_get_post_meta( get_the_ID(), '_format_audio_autoplay' );
$color = yit_get_post_meta( get_the_ID(), '_format_audio_color' );
echo do_shortcode( '[soundcloud iframe="' . $iframe . '" url="' . $url . '" show_artwork="' . $show_artwork . '" show_comments="' . $show_comments . '" auto_play="' . $auto_play . '" color="' . $color . '" width="0" ]' );
?>
</div>
<div class="clear"></div>
<?php endif;
endif ?>
<?php if( get_post_format() != '' ) : ?><span class="post-format <?php echo get_post_format() ?>"><?php _e( ucfirst( get_post_format() ), 'yit' ) ?></span><?php endif ?>
<?php if( !is_single() ) : ?>
<!-- post content -->
<div class="the-content"><?php
if ( is_category() || is_archive() || is_search() ) {
if( is_category() ) {
if( yit_get_option( 'posts-categories' ) == 'excerpt' ) : the_excerpt(); else : the_content( yit_get_option( 'readmore-categories' ) ); endif;
} elseif( is_archive() ) {
if( yit_get_option( 'posts-archives' ) == 'excerpt' ) : the_excerpt(); else : the_content( yit_get_option( 'readmore-archives' ) ); endif;
} elseif( is_search() ) {
if( yit_get_option( 'posts-searches' ) == 'excerpt' ) : the_excerpt(); else : the_content( yit_get_option( 'readmore-searches' ) ); endif;
}
}
else
{ the_content( yit_get_option('blog-read-more-text') ); }
?>
</div>
<?php endif ?>
</div>
</div>
<?php if( is_single() ) : ?>
<?php if( get_post_format( get_the_ID() ) == 'audio' ) : ?>
<div class="soundcloud-frame span<?php echo yit_get_sidebar_layout() == 'sidebar-no' ? 12 : 9 ?>">
<?php
$url = yit_get_post_meta( get_the_ID(), '_format_audio' );
$iframe = ( bool ) yit_get_post_meta( get_the_ID(), '_format_audio_iframe' );
$show_artwork = ( bool ) yit_get_post_meta( get_the_ID(), '_format_audio_artwork' );
$show_comments = ( bool ) yit_get_post_meta( get_the_ID(), '_format_audio_comments' );
$auto_play = ( bool ) yit_get_post_meta( get_the_ID(), '_format_audio_autoplay' );
$color = yit_get_post_meta( get_the_ID(), '_format_audio_color' );
echo do_shortcode( '[soundcloud iframe="' . $iframe . '" url="' . $url . '" show_artwork="' . $show_artwork . '" show_comments="' . $show_comments . '" auto_play="' . $auto_play . '" color="' . $color . '" width="0" ]' );
?>
</div>
<div class="clear"></div>
<?php endif ?>
<!-- post content -->
<div class="the-content single group span<?php echo yit_get_sidebar_layout() == 'sidebar-no' ? 12 : 9 ?>"><?php
if ( is_category() || is_archive() || is_search() ) {
if( is_category() ) {
柯晓楠
- 粉丝: 2w+
- 资源: 2889
最新资源
- PLC按时间启停设备运转,设备到期停止设备运转 1,设备启停时间可以自行设定 2,可多次调用子程序,只需修改对应参数即可设定多段启停时间段 3,到时间后输入动态密码继续继续运行 4,配合上位机组态
- 关键词:需求响应 主从博弈 热电联产 综合能源系统 编程语言:matlab 主题:基于主从博弈的综合能源微网需求响应优化调度模型
- Average Curve:基于MATLAB Simulink的通过线性插值返回多条曲线的平均曲线 返回的平均曲线也具有唯一的和排序的横坐标
- 前端分析-2023071100789
- WindRose:基于MATLAB Simulink的方向强度直方图(风玫瑰图),还可以将图形中所表示的数据返回数据表中
- VIENNA-Rectifier:基于MATLAB Simulink的VIENNA(维也纳)整流器仿真模型 控制算法采用电压电流双环控制,电压外环采用PI控制器,电流内环采用bang bang滞环控
- ATV61 71变频器驱动板图纸,30-45Kw可参考通用,图清晰
- 手机组态软件 APP监控西门子200smart PLC C#全套源代码 1,C#开发上位机手机APP,自己写的程序可提供部分 2,通过VS2019开发安卓手机app 3,全套源代码,admin
- 滚动轴承故障诊断MATLAB程序:快速谱峭度、谱峭度+包络谱分析 可以很好的提取出滚动轴承故障特征
- c#工业自动化通信开发库,工业自动软件必备的基本程序 包括串口通信,TCP客户端,tcp服务器端,高并发物联网接收服务器端,udp通信,can总线通信,profinet,modbus tcp rtu
- opc ua客户端实例源码,带ef6+sqlite 代码有完整的注解,及包括所有的链接库和程序结构思维图 纯学习资料
- C# 高并发高性能socket源代码 包括tcp客户端和服务器端,udp客户端和服务器端 所有都包括socket流控制 此代码属于上层代码,主要应用于大批量物联网项目,mes系统及游戏服务器
- pmsm电阻电感磁链常数辨识源码 电阻,电感,磁链常数辨识 程序在ti dsp实现 在ti开源foc框架基础上开发 能够辨识电机电阻,电感,磁链常数 精度较高,能够满足foc控制需要
- BP神经网络电力负荷预测MATLAB程序 MATLAB完整程序代大量注释,只提供程序和数据,不负责 提供原始数据 3年负荷Excel表格,2年作为训练,1年作为测试 数据提供全年365天,每天
- 前端分析-2023071100789
- comsol 5.6固态电池仿真,有参考文献,本模型为二维模型
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈