Title: Setting navigation text&#8230;
Last modified: August 30, 2016

---

# Setting navigation text…

 *  Resolved [jeremy2805](https://wordpress.org/support/users/jeremy2805/)
 * (@jeremy2805)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/setting-navigation-text/)
 * Hello,
 * I’d like to be able to change the Prev and Next text to chevrons. The simplest
   way would be for me to include the navigationText parameter in the shortcode,
   but it requires the use of square brackets which conflicts with the shortcode
   parser. Any ideas how I’d do it?
 * Many thanks.
 * [https://wordpress.org/plugins/owl-carousel/](https://wordpress.org/plugins/owl-carousel/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Thread Starter [jeremy2805](https://wordpress.org/support/users/jeremy2805/)
 * (@jeremy2805)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/setting-navigation-text/#post-6217636)
 * The solution that worked for me was to bypass the shortcode by sticking this 
   in the template file…
 *     ```
       <?php
       	echo owl_function(
       			array(	category => "slider",
       				singleItem => "true",
       				autoPlay => "true",
       				stopOnHover => "true",
       				navigation => "true",
       				navigationText => "<,>"
       			)
       	);
   
       	if ( have_posts() ) while ( have_posts() ) : the_post();
       		the_content();
       	endwhile;
       ?>
       ```
   
 * As an aside, I think the Owl Carousel might screw up the loop because when I 
   first did it, the call was just above the_content and it didn’t output my page
   content.
 *  [king_slick](https://wordpress.org/support/users/king_slick/)
 * (@king_slick)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/setting-navigation-text/#post-6217828)
 * try to just add this attribute [navigationText=”<,>”]
 * sample shortcode:
    [owl-carousel category=”Sample Carousel” items=”4″ autoPlay
   =”true” navigation=”true” navigationText=”<,>”]

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Setting navigation text…’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/owl-carousel_1ab9bc.svg)
 * [Owl Carousel](https://wordpress.org/plugins/owl-carousel/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/owl-carousel/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/owl-carousel/)
 * [Active Topics](https://wordpress.org/support/plugin/owl-carousel/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/owl-carousel/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/owl-carousel/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [king_slick](https://wordpress.org/support/users/king_slick/)
 * Last activity: [10 years, 2 months ago](https://wordpress.org/support/topic/setting-navigation-text/#post-6217828)
 * Status: resolved