Solución para errores de enlaces y alineación en theme de blog

  • Autor Autor Diegotrap
  • Fecha de inicio Fecha de inicio
Diegotrap

Diegotrap

Delta
Redactor
Verificación en dos pasos activada
Tengo un problema con el theme que uso en un blog que estoy creando.

La página de cada post (single) no funciona bien. No funciconan muchos enlaces ni la alineacion de los enlaces

Crédito: “Reputación, credibilidad, valor”|Vdom

Me podeis ayudar? gracias de entrada

Por si os sirve de algo single.php

Insertar CODE, HTML o PHP:
<?php get_header(); ?>

	<?php if ( get_option( 'woo_breadcrumbs' )) { yoast_breadcrumb('<div id="breadcrumb"><p>','</p></div>'); } ?>
	
	<div id="content">
		
		<div id="main_content">
			
			<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
		
			<div class="post">
			
				<div class="post_head">
				
					<div class="title_meta">
						<h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>					
						<p class="meta">Fecha: <?php the_time('d F Y'); ?> | Autor: <?php the_author_posts_link(); ?> | Categoría: <?php the_category(', '); ?></p>
					</div><!-- /title_meta -->
					
					<span class="comments"><a href="<?php comments_link(); ?>" title="Comentarios en esta entrada"><?php comments_number('0','1','%'); ?></a><span class="bg"></span></span>
				
				</div><!-- /post_head -->
				
				<div class="entry">
				
					<?php the_content(); ?>
				
				</div><!-- /entry -->
			
			</div><!-- /post -->
			
			<?php endwhile; endif; ?>
			
			<?php comments_template(); ?>    	
			
		</div><!-- /main_content -->
		
		<?php get_sidebar(); ?>
		
		<div class="clear"></div>
		
	</div><!-- /content -->

<?php get_footer(); ?>
 
Atrás
Arriba