4

我在我的博客上设置了自定义帖子类型和分类的特殊页面。在分类页面上,我收到以下错误。谁能给我一些有关如何解决此错误的提示?

该页面加载正常并且可以按我的预期工作。但是如果我将调试设置为 true,我会收到以下错误。我想解决这个问题。我粘贴了循环中的成本,该循环以不同的标准在页面上运行两次。

Notice: Trying to get property of non-object in /home3/ans/public_html/wp-includes/post-template.php on line 29

代码:

<?php
query_single('dealers', 'publish', '1', $taxtype, $value);
 ?>

 <?php if (have_posts()) : ?>
 <?php while (have_posts()) : the_post(); ?>

 <?php 
   $address=get_post_meta($post->ID, 'wpcf-street_address', TRUE); 
   $city=get_post_meta($post->ID, 'wpcf-city', TRUE); 
   $state=get_post_meta($post->ID, 'wpcf-state_abbreviation', TRUE); 
   $zip=get_post_meta($post->ID, 'wpcf-zip_code', TRUE); 
   $phone=get_post_meta($post->ID, 'wpcf-phone_number', TRUE); 
   $paid=get_post_meta($post->ID, 'wpcf-paid', TRUE);
   $post_id=get_the_ID();
   get_each_dealer_brand($post_id);?>

  <?php 
  echo "<ul class=\"ullisting\">";
  if($paid==1)
  {
   echo "<li><p class=\"plisting\"><strong><a href=\"";the_permalink(); echo  "\">";the_title();echo "</a></strong></p></li>";
    echo "<li><p class=\"plisting\">$address | $city, $state $zip</p></li>";
echo "<li><p class=\"plisting\">P: $phone</p></li>";
    echo "<li><p class=\"listing\"><span><small>$brands_list</small></span></p></li>";
 }
echo "</ul>";
?>

 <?php endwhile; ?>

 <?php
 wp_reset_query(); 
 wp_reset_postdata(); 
 unset($brands_list);
 ?>

这是上面引用的函数:

   function query_single($posttype, $poststatus, $paidvalue, $taxtype, $value) {

     global $wp_query;
    $wp_query = new WP_Query();
  $args = array(
   'post_type' => $posttype,
   'post_status' => array($poststatus),
   'orderby' => 'rand', 
   'posts_per_page' => 20,
   'meta_query' => array(
       array(
           'key' => 'wpcf-paid',
           'value' => array($paidvalue),
           'compare' => 'IN',
       )
   ),
    'tax_query' => array(
            array(
                'taxonomy' => $taxtype,
                'field' => 'slug',
                'terms' => $value
            )
        )
    );
   return $wp_query->query($args);
   }
4

2 回答 2

5

当您尝试访问主题内的帖子时会出现此错误,

page-template.php我们有,

function get_the_ID() {
    return get_post()->ID;
}

每当我们访问帖子时,我们需要检查以下条件并确保它默认工作,因为我们可能不会wp_reset_postdata();一直使用,

  global $post;    
//check if post is object otherwise you're not in singular post
  if( !is_object($post) ) 
     return;
//If Object
  $somevariable = get_post_meta(get_the_ID(), $something->get_the_id(), TRUE); 

希望这可以帮助。谢谢。

于 2014-06-26T08:02:05.377 回答
0

您可以尝试在ACTION中执行您的命令(因为当时 wordpress 已经正常加载)。像这样:

ADD_ACTION('init','your_function');

function your_function(){
    YOUR CODES HEREEEEEEEEEEE............
}
于 2015-12-18T20:15:04.013 回答