Quantcast
Channel: WordPress.org Forums » All Posts
Viewing all articles
Browse latest Browse all 112756

marjanstojanov on "Removing permanet link from slider"

$
0
0

Hello i`m working on this site
http://www.ganzheitliche-zahnaerztin.ch/test/

And you see there is slider and i cant to remove the permanent link from the slider. I dont want any links to be show on the pictures.

How can i do this ?

I tried to remove this from my slider2.php file

<?php
$slidercatid = get_option("slidercatid");
$displayimages = get_option("displayimages");
query_posts("cat=$slidercatid&showposts=$displayimages");
while (have_posts()) : the_post(); 	$postimg = get_post_meta($post->ID, "post_image", TRUE);
$timthumboption = get_option("timthumboption");
	if( $timthumboption == "0" ) { ?>
	<a href="<?php the_permalink(); ?>" title="Permanent link to <?php the_title_attribute(); ?>"><img src="<?php bloginfo( 'template_directory' ); ?>/timthumb.php?src=<?php echo get_post_meta( $post->ID, "post_image", true ); ?>&w=650&h=300" alt="<?php the_title(); ?>" /></a>
	<?php }?>

	<?php if( $timthumboption == "1" ) {	 ?>
	<a href="<?php the_permalink(); ?>" title="Permanent link to <?php the_title_attribute(); ?>">
	<img src="<?php echo $postimg; ?>" width="650" height="300" alt="<?php the_title(); ?>" /></a>
	<?php } ?>

	<?php endwhile; ?>
	</div>
	<div id="nav"></div>
</div>

But nothing works, tried to remove from single.php, nothing workd and there

Any help thakns


Viewing all articles
Browse latest Browse all 112756

Trending Articles