Comunidad de diseño web y desarrollo en internet online

Mostrar posts de Wordpress en página web estática

Citar            
MensajeEscrito el 15 Ago 2012 11:43 am
Saludos a ver si podéis ayudarme.

Tengo una página web estática y me interesa crear un apartado de novedades donde poder mostrar los posts nuevos de mi blog wordpress.

¿Me podríais indicar como puedo hacerlo?

Por dmljoomla

0 de clabLevel



 

opera
Citar            
MensajeEscrito el 02 Sep 2012 09:07 pm
Visita : Pagina oficial Wordpress

Código PHP :

<?php
/*
Template Name: Page Of Posts
*/

// if you are not using this in a child of Twenty Eleven, you need to replicate the html structure of your own theme.

get_header(); ?>
<div id="primary">
<div id="content" role="main">
<?php
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$args= array(
   'category_name' => 'antiquarianism, championship', // Change these category SLUGS to suit your use.
   'paged' => $paged
);
query_posts($args);
if( have_posts() ) :?>

<?php twentyeleven_content_nav( 'nav-above' );?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; ?>
<?php twentyeleven_content_nav( 'nav-below' ); ?>

<?php else : ?>
<article id="post-0" class="post no-results not-found">
<header class="entry-header">
<h1 class="entry-title"><?php _e( 'Nothing Found', 'twentyeleven' ); ?></h1>
</header><!-- .entry-header -->

<div class="entry-content">
<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'twentyeleven' ); ?></p>
<?php get_search_form(); ?>
</div>
<?php endif; ?>
</div>
</div>
<?php get_footer();

Por dsalcedo

50 de clabLevel



Genero:Masculino  

chrome

 

Cristalab BabyBlue v4 + V4 © 2011 Cristalab
Powered by ClabEngines v4, HTML5, love and ponies.