GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   wordpress masters please help! (https://gfy.com/showthread.php?t=676566)

King Soil 11-13-2006 12:38 AM

wordpress masters please help!
 
Is there a simple way to take a webpage that is already designed and just plugin the postings from your wordpress blogs? I have a site already built but want to have the center portion of it be updated by wp.. hope this makes sense.

marko13 11-13-2006 12:45 AM

i think it is impossible.... but you have very good themes that are better from your site design and + you can modify them in accordance with your needs...

King Soil 11-13-2006 12:53 AM

Yeah i figured it would be too simple to be able to plug it into an already made html page and have it turn into a blog..

martinsc 11-13-2006 12:54 AM

i think that could be possible, but a lot of coding...
(all the includes, queries and stuff).
bump for coders

King Soil 11-13-2006 01:12 AM

maybe one of the many blog designers out there can offer a solution?

jMEGA 11-13-2006 01:37 AM

all you want is the main articles part of WP included in your existing site?

nastynun 11-13-2006 01:39 AM

Quote:

Originally Posted by King Soil (Post 11301923)
Is there a simple way to take a webpage that is already designed and just plugin the postings from your wordpress blogs? I have a site already built but want to have the center portion of it be updated by wp.. hope this makes sense.

This tutorials might help you
http://codex.wordpress.org/User:Jale..._Existing_Site
http://www.transycan.net/blogtest/2005/07/05/integrate/

King Soil 11-13-2006 01:49 AM

Quote:

Originally Posted by jMEGA (Post 11302132)
all you want is the main articles part of WP included in your existing site?

Yep pretty much and maybe to be able to list the previous posts in the side bar.

jMEGA 11-13-2006 01:51 AM

change your wp index.php to:

PHP Code:

<?php if (have_posts()) : ?>

        <?php while (have_posts()) : the_post(); ?>

            <div class="post" id="post-<?php the_ID(); ?>">
                <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
                <small><?php the_time('F jS, Y'?> <!-- by <?php the_author() ?> --></small>

                <div class="entry">
                    <?php the_content('Read the rest of this entry &raquo;'); ?>
                </div>

                <p class="postmetadata">Posted in <?php the_category(', '?> | <?php edit_post_link('Edit'''' | '); ?>  <?php comments_popup_link('No Comments »''1 Comment »''% Comments »'); ?></p>
            </div>

<?php endwhile; ?>
<?php 
endif; ?>


King Soil 11-13-2006 03:55 AM

Quote:

Originally Posted by jMEGA (Post 11302170)
change your wp index.php to:

PHP Code:

<?php if (have_posts()) : ?>

        <?php while (have_posts()) : the_post(); ?>

            <div class="post" id="post-<?php the_ID(); ?>">
                <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
                <small><?php the_time('F jS, Y'?> <!-- by <?php the_author() ?> --></small>

                <div class="entry">
                    <?php the_content('Read the rest of this entry &raquo;'); ?>
                </div>

                <p class="postmetadata">Posted in <?php the_category(', '?> | <?php edit_post_link('Edit'''' | '); ?>  <?php comments_popup_link('No Comments »''1 Comment »''% Comments »'); ?></p>
            </div>

<?php endwhile; ?>
<?php 
endif; ?>



Thanks a lot man! Thats exactly what I needed to see to get it in order. :thumbsup


All times are GMT -7. The time now is 06:35 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123