Theme Tweaks

Status
Not open for further replies.

spectre

Active Member
100
2011
17
0
Hi folks

I need to change some stuff in m wordpress theme and require your help in doing so my site is http://TrollBus.org


1) After every post there are tags displayed which are currently clickable, I want to make them static and not clickable. i did a little go through in the editor and found this code for the tags but cant figure out what to change here:

PHP:
<?php $tags_list = get_the_tag_list( '', ', ' ); 
			if ( $tags_list ): ?>
			<?php printf( __( '<span class="%1$s">Tagged in : </span> %2$s', 'csc-themewp' ),'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?>
			<?php endif; ?>


You can check this pic to find what I am talking about i have highlighted it in GREEN
http://i1231.photobucket.com/albums/ee505/spectre7/22_zps59b32595.jpg

2)At the end of every page there are numbers displayed in order to navigate to other page i want to remove these numbers and display two button in middle "NEXT" and "BACK". I have hi-lighted it in RED in the above picture

I hope you guys understand thanks for reading
Regards[:P]
 
3 comments
you're welcome.
so let me get this right, you want just 2 buttons designed in photoshop or just based on css to be in the middle saying next and back??

Possibly this would work?

PHP:
wp_pagenavi('', '', array(   'prev_text' => '<img src="' .  get_bloginfo('stylesheet_directory') . '/prev-image.png' . '">',    'next_text' => '<img src="' . get_bloginfo('stylesheet_directory')  . '/next-image.png' . '">', ));
 
Status
Not open for further replies.
Back
Top