Insertar Cutenews
Aquí se muestran las posibles opciones para insertar cutenews en tu pagina.
AVISO TODAS LAS PAGINAS QUE GUARDES CON ESTE CODIGO DEBEN TERMINAR CON .PHP, EJEMPLO INDEX.PHP
INSERTAR NORMALMENTE
Si tu cutenews esta guardado en otro directorio que no se llame “cutenews” cambia el código de abajo donde dice “cutenews/..”
<?PHP
include("cutenews/show_news.php");
?>
INSERTAR CON UN TEMPLANTE DIFERENTE
Puedes insertar tu Cutenews sin necesidad de usar el templante por defecto
<?PHP
$template = "NOMBRE DEL TEMPLANTE";
include("cutenews/show_news.php");
?>
INSERTAR ULTIMAS 5 NOTICIAS
El numero de noticias puede tomar el valor que desees.
<?PHP
$number = "5";
include("cutenews/show_news.php");
?>
INSERTAR NOTICIAS DE UNA CATEGORÍA DEFINIDA
El numero de la categoría puede variar
<?PHP
$number = "5";
$category = "2";
include("cutenews/show_news.php");
?>
tutorial hecho por skyandstars.net








