如何在Wordpress博客上编辑发布元数据

时间:2017-08-16 21:32:22

标签: php wordpress function post-meta

我正在尝试编辑我的Wordpress博客上的帖子元数据,包括:

作者(无链接)日期(无链接)页面(我网站上的联盟会员链接)

每个帖子标题下。

我正在使用Activello主题并安装了一个子主题。我正在尝试创建一个函数来发布元数据。

这就是现在的情况(这会通过链接发布作者和日期):

if ( ! function_exists( 'activello_posted_on' ) ) :
  function activello_posted_on() {
    printf( '<div class="post-meta"><a href="%1$s">%2$s</a> <a href="%3$s">%4$s</a></div>',
      esc_url( get_permalink() ),
      esc_html( get_the_date() ),
      esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
      get_the_author()
    );
  }
endif;

我试图解决这个问题,因为我收到错误,我的代码仍然不对。请帮忙!

     if ( ! function_exists( 'activello_posted_on' ) ) :
      function activello_posted_on() {
        printf( __(‘%1$s by %2$s <a href=“%3$s”>%4$s</a>’),
          get_the_date(), 
          get_the_author(),
          esc_url( get_permalink() ),
          esc_html( '<a href="http://www.diyandkawa.com/legalities/“>This post contains affiliate links.</a>' );

    );
  }
endif;

如果有人可以请求帮助,我会非常感激!

0 个答案:

没有答案