我的主题开发人员不会帮助我回答如何将此功能添加到当前主题。我查看了Wordpress文档,并尝试向函数中添加代码。php文件,但它将代码放在页面顶部。我试图添加Wordpress建议的PHP代码,但它打破了主题。
看起来这是一个自定义代码,因为它是一个自定义主题。作者说要在文章中放置的主题。php。
欢迎任何帮助。
Currently:<2017年7月11日第0类评论
Looking to have:
2017年7月11日第0类评论中更新日期:2017年7月23日上午7:00
<!-- ARTICLE DATE : begin -->
`<div class="article-date">
<i class="ico tp tp-clock2"></i>
<span class="article-date-holder">
<?php if ( lsvr_get_field( \'article_detail_categories_enable\', true, true ) ) : ?>
<?php $categories_html = \'\'; ?>
<?php $terms = wp_get_post_terms( get_the_id(), \'category\' ); ?>
<?php foreach ( $terms as $term ) : ?>
<?php $categories_html .= \'<a href="\' . get_term_link( $term ) . \'">\' . $term->name . \'</a>, \'; ?>
<?php endforeach; ?>
<?php if ( $categories_html !== \'\' ) : ?>
<?php $categories_html = rtrim( $categories_html, \', \' ); ?>
<?php echo sprintf( \'%s in %s\', get_the_date(), $categories_html ); ?>
<?php else: ?>
<?php echo get_the_date(); ?>
<?php endif; ?>
<?php else: ?>
<?php echo get_the_date(); ?>
<?php endif; ?>
</span>
<?php if ( lsvr_get_field( \'article_detail_author_enable\', false, true ) ) : ?>
<span class="article-author">
<?php echo sprintf( \'by %s\', get_the_author_posts_link() ); ?>
</span>
<?php endif; ?>
<?php if( comments_open() ) : ?>
<span class="article-comments">
<?php $comment_count = get_comment_count( get_the_ID() ); ?>
<a href="<?php the_permalink(); ?>#comments"><?php echo @sprintf( __( \'%d comments\', \'lsvrtheme\' ), $comment_count[\'approved\'] ); ?></a>
</span>
<?php endif; ?>
</div>`
<!-- ARTICLE DATE : end -->