我是 PHP World 的新手,我自定义了一个 WordPress 模板。
我在 php 文件中有以下函数:
function admired_posted_on() {
printf( __( '<span class="sep">Posted on </span>
<a href="%1$s" title="%2$s" rel="bookmark">
<time class="entry-date" datetime="%3$s" pubdate>%4$s</time>
</a>
<span>BLABLA</span>
<span class="by-author">
<span class="sep"> by bla</span>
<span class="author vcard">
<a class="url fn n" href="%5$s" title="%6$s" rel="author">%7$s</a>
</span>
</span>
', 'admired' ),
esc_url( get_permalink() ),
esc_attr( get_the_time() ),
esc_attr( get_the_date( 'c' ) ),
esc_html( get_the_date() ),
esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
sprintf( esc_attr__( 'View all posts by %s', 'admired' ), get_the_author() ),
esc_html( get_the_author() )
);
}
现在,我必须在printf正文中将以下 php 代码插入到BLABLA标记中,而不是“BLABLA”文本。这是我必须插入的 php 代码:
<?php echo '(' . get_PostViews(get_the_ID()) . ')'; ?>
如果我将 ithis 行插入到前一个 span 标签中,则会出错。
get_PostViews(get_the_ID()) 返回一个必须在该范围内显示的整数
有人可以帮助我吗?