質問: ACFリピーターフィールドの出力で単純に行をカウントするにはどうすればよいですか?
目標: 1行のみの場合と複数行の場合にcssクラスで出力を異なるように表示します。
私のコード:
if( have_rows('testimonials')) {
$counter = 0;
$numtestimonials = '';
//loop thru the rows
while ( have_rows('testimonials') ){
the_row();
$counter++;
if ($counter < 2) {
$numtestimonials = 'onlyone';
}
echo '<div class="testimonial ' . $numtestimonials . '">';
// bunch of output here
echo '</div>';
}
}
明らかに、最初の行ではカウントが2未満であるため、ここで行う方法は機能しません。したがって、さらに行がカウントされてもtrueを返します。
ありがとうございました!
OK、私はついにこれに対する答えを見つけました。
ACFリピーターの合計行をカウントする方法は次のとおりです。
$numrows = count( get_sub_field( 'field_name' ) );
次のように行カウントを取得できます。
_$count = get_post_meta(get_the_ID(), 'testimonials', true);
_
明らかにこれはget_the_ID()
を使用して現在の投稿IDを取得します-これを修正する必要があるかもしれません。
ACFは、リピーターフィールド名に対するリピーターカウント値をpostmetaテーブルのmeta_keyとして保存します。
ACFはカウントを使用して、正しいリピーターサブフィールド値を取得します。これは、_$repeaterFieldname . '_' . $index . '_' . $subfieldName
_形式のmeta_keysに対する値として保存されます。
お役に立てれば...
これを試してみてください。
<?php
$row = get_field('repeater', $post->ID);
if($row < 1) {
$rows = 0;
} else {
$rows = count($row);
} ?>
<p>Number of Row is (<?php echo $rows ; ?>)</p>
リピーターフィールドの使用
リピーターには、get_fieldまたはthe_repeater_field/the_sub_fieldからアクセスできます。
<?php if( have_rows('repeater_field_name') ): ?>
<ul>
<?php while( have_rows('repeater_field_name') ): the_row(); ?>
<li>sub_field_1 = <?php the_sub_field('sub_field_1'); ?>, sub_field_2 = <?php the_sub_field('sub_field_2'); ?>, etc</li>
<?php
$sub_field_3 = get_sub_field('sub_field_3');
// do something with $sub_field_3
?>
<?php endwhile; ?>
</ul>
<?php endif; ?>
リピーターフィールド行をランダムに選択します
<?php
$rows = get_field('repeater_field_name');
$row_count = count($rows);
$i = Rand(0, $row_count - 1);
echo $rows[ $i ]['sub_field_name'];
?>
別のページから値を取得する
<?php
$other_page = 12;
?>
<p><?php the_field('field_name', $other_page); ?></p>
<?php
// get variable
$variable = get_field('field_name', $other_page);
// repeater field: note that the_sub_field and get_sub_field don't need a post id parameter
if( have_rows('repeater_field_name', $other_page) ): ?>
<ul>
<?php while( have_rows('repeater_field_name', $other_page) ): the_row(); ?>
<li>sub_field_1 = <?php the_sub_field('sub_field_1'); ?>, sub_field_2 = <?php the_sub_field('sub_field_2'); ?>, etc</li>
<?php
$sub_field_3 = get_sub_field('sub_field_3');
// do something with $sub_field_3
?>
<?php endwhile; ?>
</ul>
<?php endif; ?>
ACF値で投稿をクエリする
場所(カスタムフィールド-選択)がメルボルン(値)に等しいイベント(投稿タイプ)を検索する例。ここで読むことがたくさんあります: http://codex.wordpress.org/Template_Tags/get_posts 。
<?php
$posts = get_posts(array(
'numberposts' => -1,
'post_type' => 'event',
'meta_key' => 'location',
'meta_value' => 'melbourne'
));
if($posts)
{
echo '<ul>';
foreach($posts as $post)
{
echo '<li><a href="' . get_permalink($post->ID) . '">' . get_the_title($post->ID) . '</a></li>';
}
echo '</ul>';
}
?>
$numtestimonials
の値をリセットしたいようです。
したがって、事実上、修正されたコードは次のようになります。
$output = "";
$numtestimonials = "";
while ( have_rows('testimonials') ){
the_row();
$counter++;
$output .= "<span>" .$some_data. "</span>"; // bunch of output;
}
if($counter < 2){
$numtestimonials = "onlyone";
}
$output = "<div class='testimonail ".$numtestimonials." '>"
.$output
."</div>";
echo $output;