- Attended a Community Meetup
- Australia
- Author had a File in an Envato Bundle
- Author had a Free File of the Month
- Author was Featured
- Bought between 100 and 499 items
- Contributed a Blog Post
- Exclusive Author
Hey guys, thanks for your suggestion 
I decided to go with jquery so I did this :
$(’#slider_nav .block span a’).removeAttr(‘href’);
Will try your solutions just to practice myself and if it’s better, im gonna use it 
Does it make sense?When I output category with this : <?php echo get_the_term_list( $post?>ID, ‘slider_cats’, ’’, ’, ’, ’’); ?>
It give me all the category of that custom post type but it’s a link, I dont want link .. just text ..
strip_tags() 
- Author had a File in an Envato Bundle
- Author was Featured
- Bought between 50 and 99 items
- Exclusive Author
- Has been a member for 4-5 years
- Item was Featured
- Referred between 500 and 999 users
- Sold between 250 000 and 1 000 000 dollars
@DD
For future reference, you could use the get_terms() function:
http://codex.wordpress.org/Function_Reference/get_terms
<?php $your_array_of_terms = get_terms( $taxonomies, $args ) ?>
You’d feed in your custom taxonomy for your custom post type, and it’s going to return an array of that taxonomy’s terms. You can then loop through and pickout the “name” element for each term of the array.
- Author had a File in an Envato Bundle
- Author had a Free File of the Month
- Author was Featured
- Bought between 100 and 499 items
- Europe
- Exclusive Author
- Featured in a Magazine
- Has been a member for 3-4 years
Hey guys, thanks for your suggestion![]()
I decided to go with jquery so I did this :
$(’#slider_nav .block span a’).removeAttr(‘href’);
Will try your solutions just to practice myself and if it’s better, im gonna use it![]()
Don’t forget to style these href anyway. Some people disable javascript – they will still get the links.
As Themeblvd already wrote, the wordpress codex should be your number one ressource! Its amazing, what you can find on these pages 
And don’t worry about getting a good programmer – it just needs time.
bringthepixel said+1000 It is the best way. The code should be sth like this.
Does it make sense?strip_tags()When I output category with this : <?php echo get_the_term_list( $post->ID, ‘slider_cats’, ’’, ’, ’, ’’); ?>
It give me all the category of that custom post type but it’s a link, I dont want link .. just text ..![]()
<?php $post_categories = get_the_term_list( $post->ID, 'slider_cats' , ' ', ' , ', ' ');
echo strip_tags($post_categories);
?>
If he’s been mulling this over for the past 2 years then I think you’ve finally made his decision 
TommusRhodus said
If he’s been mulling this over for the past 2 years then I think you’ve finally made his decision![]()
I faced this problems less than 6 hours, then I found this post and tried different method. It was the best.
