1.Foreach :
$author_id=$curauth->ID;
$author_posts = get_posts( array(
'post_type' => 'post',
'author' => $curauth->ID
) );
$counter = 0;
foreach ( $author_posts as $post )
{
$views = absint( get_post_meta( $post->ID, 'post_kisi', true ) );
$counter += $views;
echo "({$views})"; //Buradaki views aşağıdaki foreach içindeki $mah->name yanında kullanmak istiyorum
}
?>
2. foreach :
name; //burada kullanmak istiyorum 1. foreach içindeki $views ?>