私は 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() )
);
}
ここで、「BLABLA」テキストの代わりに、次の PHP コードをBLABLAタグにprintf本体内に挿入する必要があります。これは、挿入する必要がある php コードです。
<?php echo '(' . get_PostViews(get_the_ID()) . ')'; ?>
この行を前の span タグに挿入すると、エラーが発生します。
get_PostViews(get_the_ID()) は、そのスパンに表示する必要がある整数を返します
誰かが私を助けることができますか?