When I get the title using this code every titles are same, I tried another method but don’t work too get_the_title($post)
don’t shows any title.
<?php
$blockquotes = array('blockquote-green', 'blockquote-blue', 'blockquote-red', 'blockquote-yellow');
$args = array( 'numberposts' => -1);
$posts= get_posts( $args );
/* for - used possible display the posts with a beautiful layout */
if ($posts) {
for ($i = 0; $i < count($posts) ; $i++ ) {
$post = $posts[$i];
setup_postdata($post);
?>
<br>
<!-- Get Post URL-->
<a href="<?php the_permalink($post) ?>">
<h4>
<?php
the_title();
?>
</h4>
</a>
<blockquote class="<?php echo $blockquotes[$i % count($blockquotes)] ?>">
<?php
the_excerpt();
?>
</blockquote>
<br>
<?php
}
}
?>
Thanks!
]]>
<?php
$blockquotes = array('blockquote-green', 'blockquote-blue', 'blockquote-red', 'blockquote-yellow');
$args = array( 'numberposts' => -1);
$posts= get_posts( $args );
/* for - used possible display the posts with a beautiful layout */
if ($posts) {
for ($i = 0; $i < count($posts) ; $i++ ) {
$post = $posts[$i];
setup_postdata($post);
?>
<br>
<!-- Get Post URL-->
<a href="<?php the_permalink($post) ?>">
<h4>
<?php
echo get_the_title($post);
?>
</h4>
</a>
<blockquote class="<?php echo $blockquotes[$i % count($blockquotes)] ?>">
<?php
the_excerpt();
?>
</blockquote>
<br>
<?php
}
}
?>
@drixe TKS.
]]>