Come si modifica - This is featured post 4 title

  • Creatore Discussione Creatore Discussione asso67
  • Data di inizio Data di inizio

asso67

Nuovo Utente
3 Apr 2012
5
0
0
Salve e ciao a tutti, è la prima volta che scrivo qui, spero che mi aiutate... sono novello in wordpress e su un tema sto incontrando delle difficoltà nella galleria dove mi compare in sovrapposizione alle foto questo:This is featured post 5 title
To set your featured posts, please go to your theme options page in wp-admin. You can also disable featured posts slideshow if you don't wish to display them.
ovviamente non so come toglierlo o modificarlo. Ho visto altri blog che lo hanno lasciato ma me non piace. Grazie dell'aiuto.
 
Prima di effettuare la modifica, fai un backup del codice!!!

a. Vai a wp-content/themes/Perfecty/includes/featuredposts
b. Apri "template.php" e sostituisci il contenuto con questo:


<?php
if ( $this ->theme->display ( 'featuredposts_label' ) ) { ?>
<h2 class = "fp-label" ><?php $this ->theme->option ( 'featuredposts_label' ) ; ?></h2>
<?php } ?>

<div class = "featuredposts clearfix" >

<div class = "fp-slides" >

<?php
$featuredposts_source = $this ->theme->get_option ( 'featuredposts_source' ) ;
$featuredposts_moreoptions = $this ->theme->get_option ( 'featuredposts_moreoptions' ) ;

$featuredposts_query = false ;

if ( $featuredposts_source == 'category' ) {
if ( $this ->theme->display ( 'featuredposts_source_category' ) ) {

}
} elseif ( $featuredposts_source == 'posts' ) {
if ( $this ->theme->display ( 'featuredposts_source_posts' ) ) {

}
} elseif ( $featuredposts_source == 'pages' ) {
if ( $this ->theme->display ( 'featuredposts_source_pages' ) ) {

}
}

if ( $featuredposts_query ) {
$featuredposts_excerpt_length = $this ->theme->get_option ( 'featuredposts_excerpt_length' ) ;
query_posts ( $featuredposts_query ) ;
if ( have_posts ( ) ) : while ( have_posts ( ) ) : the_post ( ) ;
?>
<div class = "fp-post clearfix" >
<?php
if ( $this ->theme->display ( 'thumbnail' , $featuredposts_moreoptions ) && has_post_thumbnail ( ) ) {
?><div class = "fp-thumbnail" ><a href= "<?php the_permalink(); ?>" ><?php the_post_thumbnail ( 'large' ) ; ?></a></div>

<?php
}
?>
</div>
<?php
endwhile ;
else :
$featuredposts_query = false ;
endif ;
wp_reset_query ( ) ;
}

if ( ! $featuredposts_query ) {
for ( $i = 1 ; $i <= 5 ; $i ++ ) { ?>
<div class = "fp-post" >

<div class = "fp-thumbnail" ><a href= "#" ><img src= "<?php echo $this->url; ?>/default-slides/<?php echo $i; ?>.jpg" alt= "This is default featured post <?php echo $i; ?> title" title= "This is default featured post <?php echo $i; ?> title" /></a></div>

</div>
<?php }
}
?>
</div>

<?php


<div class = "fp-nav clearfix" >


<?php if ( $this ->theme->display ( 'next_prev' , $featuredposts_moreoptions ) ) { ?>
<a href= "#fp-next" class = "fp-next" ></a>
<a href= "#fp-prev" class = "fp-prev" ></a>
<?php } ?>
</div>

<?php }
?>

</div>
 
Ultima modifica:

Discussioni simili