Ver post
  #1 (permalink)  
Old 17-jul-2007, 10:12
jesram jesram is offline
Junior Member
 
Registrado: abril-2007
Posts: 5
Predeterminado Mostrar noticia corta y luego los titulares

Tengo 5 noticias para mostrar en la página y de ellas deseo colocar la nímero 1 como noticia corta y a partir de la número 2 como titulares.

Probe las indicaciones que dan en la ayuda rápida de supernews:
<?PHP
$static = TRUE;
$template = "Headlines";
include("supernews/show_news.php");

$number = "1";
include("supernews/show_news.php");
?>

Y aqui salen al inicio todos los titulares incluyendo la noticia 1 y luego sale la noticia corta

Intente lo siguiente:
<?PHP
$static = TRUE;
$template= "noticia";
$number= "1";
$category= "1";
include("supernews/show_news.php");
$template = "titulares";
$category= "1";
include("supernews/show_news.php");
?>

Con este código sale la noticia corta Número 1, y luego todos los titulares incluyendo nuevamente la noticia 1

Y quiero que los titulares comienzen con la noticia Número 2, ya que la 1 se muestra como noticia corta.

Saludos
Citar y responder