Trovare un "percorso" in un file PHP...

actarusfleed

Nuovo Utente
10 Feb 2012
1
0
0
Salve a tutti non conosco questo linguaggio.
Sono un semplice utente che cerca di apportare una piccola modifica ad un file PHP che compone il template del proprio sito personale.

Spero possiate aiutarmi cmq.


Ho un sito con un template wordpress che a una determinata pagina associa un "page-template" particolare.

Questo page-template si chiama: page_portfolio4cols.php
Quì il codice:

PHP:
<?php

/**

 * Template Name: Project 4 columns

 */



get_header(); ?>



	<?php include_once (TEMPLATEPATH . '/title.php');?>   

  <?php global $more;	$more = 0;?>

  <?php $values = get_post_custom_values("category-include"); $cat=$values[0];  ?>

  <?php $catinclude = 'portfolio_category='. $cat ;?>

  

  <?php $temp = $wp_query;

	$wp_query= null;

	$wp_query = new WP_Query(); ?>

  <?php $wp_query->query("post_type=portfolio&". $catinclude ."&paged=".$paged.'&showposts=12'); ?>

  <?php if ( ! have_posts() ) : ?>

	<div id="post-0" class="post error404 not-found">

		<h1 class="entry-title"><?php _e( 'Not Found', 'theme1449' ); ?></h1>

		<div class="entry-content">

			<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'theme1449' ); ?></p>

			<?php get_search_form(); ?>

		</div><!-- .entry-content -->

	</div><!-- #post-0 -->

<?php endif; ?>

<div id="gallery" class="four_columns">

  <ul class="portfolio">

    <?php 

      $i=1;

      if ( have_posts() ) while ( have_posts() ) : the_post(); 

      if(($i%4) == 0){ $addclass = "nomargin";	}	

    ?>

    

    

    <?php

      $custom = get_post_custom($post->ID);

      $lightbox = $custom["lightbox-url"][0];

      

    ?>

    

      <li class="<?php echo $addclass; ?>">

				<?php if($lightbox!=""){ ?>

        <span class="image-border"><a class="image-wrap" href="<?php echo $lightbox;?>" rel="prettyPhoto[gallery]" title="<?php the_title();?>"><?php the_post_thumbnail( 'portfolio-post-thumbnail-small' ); ?><span class="zoom-icon"></span></a></span>

      <?php }else{ ?>

        <span class="image-border"><a class="image-wrap" href="<?php the_permalink() ?>" title="<?php _e('Permanent Link to', 'theme1449');?> <?php the_title_attribute(); ?>" ><?php the_post_thumbnail( 'portfolio-post-thumbnail-small' ); ?></a></span>

        <?php } ?>

        <div class="folio-desc">

          <h5><a href="<?php the_permalink(); ?>"><?php $title = the_title('','',FALSE); echo substr($title, 0, 40); ?></a></h5>

          <?php $excerpt = get_the_excerpt(); echo my_string_limit_words($excerpt,11);?>

        </div>

      </li>

    

  

    <?php $i++; $addclass = ""; endwhile; ?>

  </ul>

  <div class="clear"></div>

</div>











<?php if(function_exists('wp_pagenavi')) : ?>

	<?php wp_pagenavi(); ?>

<?php else : ?>

  <?php if ( $wp_query->max_num_pages > 1 ) : ?>

    <nav class="oldernewer">

      <div class="older">

        <?php next_posts_link('&laquo; Older Entries') ?>

      </div><!--.older-->

      <div class="newer">

        <?php previous_posts_link('Newer Entries &raquo;') ?>

      </div><!--.newer-->

    </nav><!--.oldernewer-->

  <?php endif; ?>

<?php endif; ?>

<!-- Page navigation -->



<?php $wp_query = null; $wp_query = $temp;?>



<!-- end #main -->

<?php get_footer(); ?>

Questo page-template rappresenta una determinata organizzazione grafica (portfoflio) con richiamo a una determinata tipologia di Articoli. Nella dashboard di wordpress questi articoli sono catalogati nella sezione "projects". Vedete una pagina di esempio qui sotto:

http://plasmapan.altervista.org/cat...ti-audio-video/

Bene. Io vorrei modificare questo page-template.php in modo da farlo sì puntare su i miei articoli "projects" ma facendogli visualizzare SOLO i "projects" associati ad una determinata categoria.
Giusto per farvi un esempio: facciamo finta che nella mia area "projects" abbia 10 articoli. 5 riguardano musica "Rock" e 5 musica "classica".

Bene, io vorrei modificare il mio page-template.php in modo che mi visualizzi SOLO i 5 articoli "projects" associati alla categoria "rock".

Spero possiate chiarirmi la situazione e magari cosa modificare, dove e come.

Grazie infinite per un aiuto.
Actarus
 
Ultima modifica di un moderatore:

Discussioni simili