I am using pagination in a channel tag. I need to use a custom image for my “previous” and “next” links, not the < and > chars that get output automatically. I can hard code those in and get the links working using {auto_path}. But I can’t get rid of the < and > which appear.
My code:
{exp:channel:entries channel="visual_diary_archive" disable="categories|category_fields|member_data" dynamic="off" paginate="bottom" limit="1"}
{paginate}
{if previous_page}
<li class="prev"><a href="http://{auto_path}">prev</a></li>
{/if}
<li>{pagination_links} of {total_pages}</li>
{if next_page}
<li class="next"><a href="http://{auto_path}">next</a></li>
{/if}
{/paginate}
{/exp:channel:entries}You can see I am inserting a class=“next” in the LI that contains the prev/next. With CSS I am using a BG image and hiding the text “prev” and “next”. That’s working fine. But my problem is that this code:
<li>{pagination_links} of {total_pages}</li>generates the < and > links that I want to get rid of. Possible?