dongmiao520892 2018-08-17 08:44
浏览 140
已采纳

Wordpress从function.php加载自定义字段

I'm new in wordpress. I'm trying load custom field of post from function.php. Below is code for function post grid layout function where I use custom field:

 $args = array(
    'post_type'         => 'post',      
    'category_name'     => 'category',  
    'posts_per_page'    => -1,        
    'orderby'           => 'ID',
    'order'             => 'ASC'
  );

  // The Query
  $the_query = new WP_Query( $args );

  // The Loop
  if ( $the_query->have_posts() ) {

    $c = 1;     
    $bpr = 5;   

    while ( $the_query->have_posts() ) : $the_query->the_post();
    ?>
        <div class="member">
          <div class="div-block-image">
            <?php the_post_thumbnail(); ?>
          </div>
          <div class="div-block-29 w-clearfix">
            <div class="text-block-21"><?php the_title(); ?></div>
            <div class="text-block-22">subTitle</div>
            <div class="text-block-23">Text...</div>
            <a href="<?php the_permalink() ?>" class="more w-inline-block">
              <div class="text-block-24">More</div>
            </a>
            <p><?php echo get_post_meta($post->ID, 'linkedin', true); ?></p> // custom-field
            <p><?php echo get_post_meta($post->ID, 'bio', true); ?></p>
            <a href="#" target="_blank" class="link-block w-inline-block">
              <div class="biotxt">bio</div>
            </a>
            <a href="#" target="_blank" class="link-block w-inline-block">
              <div class="text-block-20"></div>
            </a>
          </div>
        </div>
    <?

      if( $c == $bpr ) {
        echo '<div class="clear"></div>';
        $c = 0;     
      }
      $c++;             

    endwhile;
  } else {


    _e( '<h2>Oops!</h2>', 'rys' );
    _e( '<p>Sorry, seems there are no post at the moment.</p>', 'rys' );

  }


  wp_reset_postdata();

I want to load this function from template page. All is loading normally except custom field:

<p><?php echo get_post_meta($post->ID, 'linkedin', true); ?></p>

If run function code from template page its running normal. Any ideas?

  • 写回答

2条回答 默认 最新

  • douzhang6646 2018-08-17 08:56
    关注

    $post->ID is not correct, as it's picking up the ID from the global $post object, which just happens to be the same when you're on the template page, but not necessarily when you're using it in a function in functions.php. Use get_the_ID() instead.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 你好,我想问下easyExcel下拉多选,或者复选框可以实现吗
  • ¥60 GFSK两点调制锁相环simulink模型
  • ¥20 双非跨考工科哪个专业和方向就业前景好?
  • ¥20 求会6sv辐射传输模型,辅导(可py6s🙏🏻有偿
  • ¥15 .xla后缀的文件拖到excel里什么内容也没有怎么办
  • ¥20 Workbench中Mechanical打不开、闪退是什么原因?
  • ¥240 MapReduce应用实践 学生课程
  • ¥15 hlss视频显示AUTHORITY_INVALID
  • ¥15 MAX9296A+MAX96717,美信gmsl解串有人做过吗?
  • ¥15 求帮我解决一下inode 爆满的问题(有偿)