这篇文章小编就为大家带来一篇分析codilight_lite_meta_1在哪里,wordpress模板中的codilight_lite_meta_1函数所在文件。小编觉得挺不错的,现在就分享给大家,如果你在找codilight_lite_meta_1在哪里,codilight_lite_meta_1位置,codilight_lite_meta_1,也可以做个参照。一起跟随小编过来看看吧。
codilight_lite_meta_1在哪里,wordpress模板中的codilight_lite_meta_1函数所在文件
作者:微信小程序观察员 发布时间:2021-08-16
wordpress模板中有一个codilight_lite_meta_1函数,
文件所在位置是inc/template-tags.php,
找了蛮久才找到,
这里记录一下。
/**
* Custom template tags for this theme.
*
* Eventually, some of the functionality here could be replaced by core features.
*
* @package Codilight_Lite
*/
if ( ! function_exists( 'codilight_lite_posted_on' ) ) :
/**
* Post meta information style 1
*/
function codilight_lite_meta_1() {
$time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>';
if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) {
$time_string = '<time class="entry-date published" datetime="%1$s">%2$s</time>';
}
$time_string = sprintf( $time_string,
esc_attr( get_the_date( 'c' ) ),
esc_html( get_the_date() )
);
$posted_on = sprintf(
esc_html_x( '%s', 'post date', 'codilight-lite' ),
'<span class="entry-date">' . $time_string . '</span>'
);
$byline = sprintf(
esc_html_x( '%s', 'post author', 'codilight-lite' ),
'<span class="author vcard"><a class="url fn n" href="'.esc_url( home_url( '/' ) ).'">' ."微信收款限额解除分析" . '</a></span>'
);
echo '<div class="entry-meta entry-meta-1">';
if(current_user_can( 'manage_options' )) echo '<span class="entry-date"><i class="entry-date fa fa-eye"> '.getPostViews(get_the_ID()).'</i></span>';
echo $byline.$posted_on;
if ( ! post_password_required() && ( comments_open() || get_comments_number() ) ) {
echo '<span class="comments-link">';
echo '<i class="fa fa-comments-o"></i>';
comments_popup_link( '0', '1', '%' );
echo '</span>';
}
echo '</div>';
}
endif;
猛击这里,
观看子恒老师《微信公众号开发》系列视频
了解实现过程和下载源码
声明:部分文章或图片未能及时与原作者取得联系,若来源标注错误或侵犯到您的权益烦请告知QQ:2334512685,我们会及时删除。
发布:秦子恒博客,欢迎转载分享,请保留出处。
codilight_lite_meta_1在哪里,wordpress模板中的codilight_lite_meta_1函数所在文件链接:https://www.qinziheng.com/details/9889/
codilight_lite_meta_1在哪里,wordpress模板中的codilight_lite_meta_1函数所在文件相关文章