My project need to add title of posts to the dots navigation of slider.
How can i call dots navigation in a custom position or just make this run as dots navigation of slider?
<ul class="slides">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<li>
<?php the_title();?>
</li>
<?php endwhile;endif;wp_reset_query();?>
</ul>
Solved , may this will help someone 🙂