Je ne trouve pas la ligne - PHP - Programmation
Marsh Posté le 26-01-2011 à 22:02:18
voici la page index
<?php get_header(); ?>
<div class="span-24" id="contentwrap">
<div class="span-16">
<div id="content">
<?php if(is_home()) { include (TEMPLATEPATH . '/featured.php'); } ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<?php if ( function_exists("has_post_thumbnail" ) && has_post_thumbnail() ) { the_post_thumbnail(array(260,200), array("class" => "alignleft post_thumbnail" )); } ?>
<h2 class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<div class="postdate"><img src="<?php bloginfo('template_url'); ?>/images/date.png" /> <?php the_time('F jS, Y') ?> <img src="<?php bloginfo('template_url'); ?>/images/user.png" /> <?php the_author() ?> <?php if (current_user_can('edit_post', $post->ID)) { ?> <img src="<?php bloginfo('template_url'); ?>/images/edit.png" /> <?php edit_post_link('Edit', '', ''); } ?></div>
<div class="entry">
<?php the_content('<strong>Read more »</strong>'); ?>
</div>
</div><!--/post-<?php the_ID(); ?>-->
<?php endwhile; ?>
<div class="navigation">
<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } else { ?>
<div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
<?php } ?>
</div>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php get_search_form(); ?>
<?php endif; ?>
</div>
</div>
<?php get_sidebars(); ?>
</div>
<?php get_footer(); ?>
Marsh Posté le 26-01-2011 à 22:13:07
j'ai trouvé c'était tout simplement paramétrable par l'interface admin
><
Marsh Posté le 26-01-2011 à 20:48:53
Salut a tous
j'ai un petit probleme sur mon site
je souhaite remplacer cette image cependant je ne la trouve pas dans le code de mon site
j'ai téléchargé un thème et je l'ai modifié il me reste quelques images que je ne sais pas comment changer vue que je ne les trouve pas dans le code
mon site : http://l1games.niloo.fr/website
l'image que je souhaite modifier : http://newwpthemes.com/uploads/newwp/newwp12.png
<img src="http://newwpthemes.com/uploads/newwp/newwp12.png" class="ad125">
malgré l'utilisation de pixel perfect sur firefox je n'arrive pas a trouvé quel *.php est concerné par cette ligne !
Merci a vous j'espere que vous pourrez m'aider !