如何找到POST数组中的第一个项目?

时间:2013-02-27 作者:user1355485

我离开了?????我需要答案的地方。

<?php

global $post;

$the_post_ID = $post->ID;

$n = get_posts();
?>


<?php foreach ( $n as $post ) : ?>

<nav id="postNav">

<ul>
    <li<?php if (?????) echo \' class="current"\'; ?>>
        <a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( \'Permalink to %s\', \'twentyten`enter code here`\' ), the_title_attribute( \'echo=0\' ) ); ?>" rel="bookmark"><?php the_title(); ?></a>
    </li></ul>

<?php endforeach; ?>

1 个回复
SO网友:Vinod Dalvi

您可以使用此代码获取第一个项目

<?php

global $post;

$the_post_ID = $post->ID;

$n = get_posts();
$i=1;
?>


<?php foreach ( $n as $post ) : ?>

<nav id="postNav">

<ul>
<li<?php if ($i){ echo \' class="current"\'; $i=0; }?>>
    <a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__(     \'Permalink to %s\', \'twentyten`enter code here`\' ), the_title_attribute( \'echo=0\'         ) ); ?>" rel="bookmark"><?php the_title(); ?></a>
   </li></ul>

<?php endforeach; ?>

结束

相关推荐

Validate an option array

我们使用默认的WordPressregister_setting() 函数验证主题选项。此调用,例如:register_setting( \'options-group\', \'option1\', \'intval\' ); 将验证是否$option1 是一个整数。我可以使用什么传递选项数组来验证数组的每个成员?例如:$options = array( \'options1\' => 4, // intval \'options