• I have just started using WordPress in association with GoDaddy. I didn’t realize that using WordPress meant using themes. I see WordPress as a great tool but I took a long time designing a website and all I want to do is take the contents of the original classic themed WordPress (Basically the text and links on the right hand side) and put it in a 800px by 1350px window on my website. I DON’T want to use themes, so if you have any ideas for me please respond.

Viewing 3 replies - 1 through 3 (of 3 total)
  • well….depends how you want to go about doing it. I import my wordpress posts using this method:
    http://www.corvidworks.com/articles/wordpress-content-on-other-pages

    another bit of instruction:
    http://codex.wordpress.org/Integrating_WordPress_with_Your_Website

    You can do a lot more than what the articles show, once WP is included. You can call in plenty of things and do a lot of manipulating.

    Or, you can designa theme that looks identical to your website…which is how I started

    Thread Starter OliverW

    (@oliverw)

    Thanks for the help but I’m having some issues. I posted this into the 800px by 1350px window so I’m just wondering what I did wrong.

    <?php
    // Include WordPress
    define(‘WP_USE_THEMES’, false);
    require(‘./blog/wp-load.php’);
    query_posts(‘showposts=1’);
    ?>
    <?php while (have_posts()): the_post(); ?>

    <?php endwhile; ?>

    I wasn’t sure if I was suppose to post this into my BODY:

    <?php
    // Include WordPress
    define(‘WP_USE_THEMES’, false);
    require(‘./blog/wp-load.php’);
    query_posts(‘showposts=1’);
    ?>

    Or am I missing something else?
    When I upload it, it just doesn’t display.

    Thread Starter OliverW

    (@oliverw)

    Bump!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Integrate WordPress With Current Website’ is closed to new replies.