tech0925
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Need help with incorporation wordpress into existing site.Oh, lol. Didn’t know, sorry WP 🙂 I will give this a try WebTech. Thanks, and I will let you know how it goes.
Forum: Fixing WordPress
In reply to: Need help with incorporation wordpress into existing site.esmi,
I used that link in the past to set what I have up. However, I don’t see any instructions on how to make it open in the same website without going to WP.
Forum: Fixing WordPress
In reply to: Need help with incorporation wordpress into existing site.Hello WebTech,
Would you be willing to help me with that? I don’t mind giving you a couple of dollars for doing so. I looked at the link but don’t understand.
Forum: Fixing WordPress
In reply to: How to limit the space a post takes up on homepage?Found it thanks! However, when I use it it does not change the appearance on the blog home page. It still shows the entire posts 🙁 Any idea why?
Forum: Fixing WordPress
In reply to: How to limit the space a post takes up on homepage?Kewl, thanks. I do have one question. My excerpts is not showing anywhere. I do not see this field. The link doesn’t explain how to enable. Any idea?
Forum: Fixing WordPress
In reply to: How to add code wrap tags to posts?That one didn’t work. Said something about a bad header. However, I found exactly what I was looking for by search syntax highlighter.
Thanks so much!!!!!!
Forum: Fixing WordPress
In reply to: How to add code wrap tags to posts?Forum: Fixing WordPress
In reply to: Website WordPress Conversion help.Not sure if I should mention also that I created a folder called blog and installed wordpress. I then removed their index.php which loads everything with my own blog page and called it index.php. I added the above codes to the page which allowed me to keep my theme but just add the post to my page. Now I am trying to figure out what else to add so others can comment on my posts or articles.
Thanks, hopefully that explains everything.
Forum: Fixing WordPress
In reply to: Website WordPress Conversion help.OIC,
I might not have been to clear, sorry. I am not using a template. I have an existing website that I am trying to add wordpress to one page of my site.
Thanks!
Forum: Fixing WordPress
In reply to: Website WordPress Conversion help.Thanks ColinMorgan,
That may be what I need, however I added your php code right below the other like this and it did not seem to do anything ;(
<?php $posts = get_posts('numberposts=10&order=ASC&orderby=post_title'); foreach ($posts as $post) : start_wp(); ?> <?php the_date(); echo ""; ?> <?php the_title(); ?> <?php the_excerpt(); ?> <?php endforeach; ?> <?php comments_template(); ?>Any suggestions?