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条)

报告相同问题?

悬赏问题

  • ¥15 怎么把多于硬盘空间放到根目录下
  • ¥15 Matlab问题解答有两个问题
  • ¥50 Oracle Kubernetes服务器集群主节点无法访问,工作节点可以访问
  • ¥15 LCD12864中文显示
  • ¥15 在使用CH341SER.EXE时不小心把所有驱动文件删除了怎么解决
  • ¥15 gsoap生成onvif框架
  • ¥15 有关sql server business intellige安装,包括SSDT、SSMS。
  • ¥15 stm32的can接口不能收发数据
  • ¥15 目标检测算法移植到arm开发板
  • ¥15 利用JD51设计温度报警系统