PHP HTML / CSS creando varios循环en varias columnas

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP HTML / CSS creando varios循环en varias columnas相关的知识,希望对你有一定的参考价值。

<!-- el CSS que se tendría que añadir a style.css al final de todo (un ejemplo, se puede hacer con px) -->

.columna{
	width:30%;
	float:left;
	margin-right:3%
	}

.columna h5 a{
	color:#D90819
	}
	
<!-- el HTML y PHP en index.php, etc-->

<div class="columna">

	<?php
	    $category_id = get_cat_ID( 'Categorí­a 1' );
	    $category_link = get_category_link( $category_id );
	?>
	<h5><a href="<?php echo $category_link; ?>" title="Categorí­a 1">Categorí­a 1</a></h5>

	<?php
	$posts = get_posts('category_name=noticias&numberposts=3');
	foreach($posts as $post):
	setup_postdata($post);
	?>

	<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
	<?php the_excerpt(); ?>

	<?php $posttags = get_the_tags($post->ID); if ($posttags) {
	foreach($posttags as $tag) {
	echo '<a href="';
	echo get_tag_link($tag);
	echo '">';
	echo $tag->name . ' ';
	echo '</a>';
	}
	}
	?>
	<?php endforeach; ?>

</div>

<div class="columna">

	<?php
	    $category_id = get_cat_ID( 'Categorí­a 2' );
	    $category_link = get_category_link( $category_id );
	?>
	<h5><a href="<?php echo $category_link; ?>" title="Categorí­a 2">Categorí­a 2</a></h5>

	<?php
	$posts = get_posts('category_name=cine&numberposts=3');
	foreach($posts as $post):
	setup_postdata($post);
	?>

	<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
	<?php the_excerpt(); ?>

	<?php $posttags = get_the_tags($post->ID); if ($posttags) {
	foreach($posttags as $tag) {
	echo '<a href="';
	echo get_tag_link($tag);
	echo '">';
	echo $tag->name . ' ';
	echo '</a>';
	}
	}
	?>
	<?php endforeach; ?>

</div>

<div class="columna">

	<?php
	    $category_id = get_cat_ID( 'Categorí­a 3' );
	    $category_link = get_category_link( $category_id );
	?>
	<h5><a href="<?php echo $category_link; ?>" title="Categorí­a 3">Categorí­a 3</a></h5>

	<?php
	$posts = get_posts('category_name=musica&numberposts=3');
	foreach($posts as $post):
	setup_postdata($post);
	?>

	<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
	<?php the_excerpt(); ?>

	<?php $posttags = get_the_tags($post->ID); if ($posttags) {
	foreach($posttags as $tag) {
	echo '<a href="';
	echo get_tag_link($tag);
	echo '">';
	echo $tag->name . ' ';
	echo '</a>';
	}
	}
	?>
	<?php endforeach; ?>

</div>

以上是关于PHP HTML / CSS creando varios循环en varias columnas的主要内容,如果未能解决你的问题,请参考以下文章

text Creando Un Archivo enMiDirectórioRaízlamadoProject1.html

text creando类型

sql creando类型

text Creando Una Carpeta Desde El Terminal

PHP实现strpos

我做了个网页,html+css+js,如何把它与php融合?