我想知道是否可以使用自定义类型的全局帖子。我正在使用此功能:
global $post;
$myposts = get_posts(\'numberposts=4&offset=1& category=3,4\');
foreach($myposts as $post) :
setup_postdata($post); ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Visualizza <?php the_title(); ?>"><img src="<?php echo get_option(\'home\'); ?>/wp-content/uploads/posthumb/<?php $values = get_post_custom_values("Image"); echo $values[0]; ?>" alt="<?php the_title(); ?>" /></a>
<?php endforeach;
一旦我将文章从标准文章类型移动到新的自定义文章类型,这就停止了工作。类别仍然相同。我能以任何方式让它再次工作吗?
非常感谢您的回复。