本文整理汇总了PHP中king_news_meta_author函数的典型用法代码示例。如果您正苦于以下问题:PHP king_news_meta_author函数的具体用法?PHP king_news_meta_author怎么用?PHP king_news_meta_author使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了king_news_meta_author函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: king_news_meta_categories
?>
>
<header class="entry-header">
<?php
king_news_meta_categories('single');
the_title('<h1 class="entry-title">', '</h1>');
?>
<?php
if ('post' === get_post_type()) {
?>
<div class="entry-meta">
<?php
king_news_meta_author('single', array('before' => esc_html__('By', 'king_news') . ' '));
king_news_meta_date('single', array('before' => '<i class="material-icons">access_time</i>'));
king_news_meta_comments('single', array('before' => '<i class="material-icons">chat_bubble_outline</i>', 'zero' => esc_html__('Leave a comment', 'king_news'), 'one' => '1', 'plural' => '%'));
?>
</div><!-- .entry-meta -->
<?php
}
?>
</header><!-- .entry-header -->
<figure class="post-thumbnail">
<?php
king_news_post_thumbnail(false);
示例2: the_title
?>
<div class="grid-view__footer">
<?php
if (is_single()) {
the_title('<h2 class="entry-title">', '</h2>');
} else {
echo '<h3 class="entry-title"><a href="' . esc_url(get_permalink()) . '" rel="bookmark">' . get_short_title(50) . '</a></h3>';
/*the_title( '<h3 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h3>' );*/
}
?>
<div class="grid-view__footer-2">
<div class="grid-view__author-date">
<?php
king_news_meta_author('loop', array('before' => esc_html__('by', 'king_news') . ' '));
?>
<?php
king_news_meta_date('loop', array('before' => '<i class="material-icons">access_time</i>'));
?>
</div>
<?php
king_news_share_buttons('loop');
?>
</div>
</div>
</figcaption>
示例3: king_news_meta_author
<div class="widget-image-grid__content-2">
<h3 class="widget-image-grid__title">
<a href="<?php
echo $permalink;
?>
"><?php
echo $title;
?>
</a>
</h3>
<div class="widget-image-grid__footer">
<div class="widget-image-grid__footer-meta">
<?php
king_news_meta_author('both-loop-single', array('before' => esc_html__('by', 'king_news') . ' '));
?>
<a class="widget-image-grid__link" href="<?php
echo $permalink;
?>
"><i class="material-icons dp18">access_time</i><?php
echo $date;
?>
</a>
</div>
<?php
king_news_share_buttons('both-loop-single');
?>
</div>
</div>