• Hey Guys,

    Can you use wordpress without a layout?

    Like with cutenews you just php include in the news.

    Can you do that with wordpress or do you have to integrate it with your site?

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • WordPress is nothing like Cutenews.

    maybe is this that u want
    include thie code in a php page and show it 5 post of ur wordpress

    <?php
    //incluimos wordpress
    define('WP_USE_THEMES', false);
    require('./blog/wp-blog-header.php');
    //pedimos 5 posts y mostramos una lista desordenada
    query_posts('showposts=3'); ?>
    <ul style="list-style: none;">
    <?php
    while (have_posts()): the_post();
    echo "<li><a href='".get_permalink($post->ID)."'>";
    the_title();
    echo '</a></li>';
    endwhile; ?>
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘WordPress like Cutenews?’ is closed to new replies.