gadgeteffect
Forum Replies Created
-
Forum: Plugins
In reply to: Voting plugin?Bump
Forum: Fixing WordPress
In reply to: Post content on page with new page template?Ok, maybe you can help me some more. I am trying to use
<?php query_posts('pagename=example'); ?>That is to pull the page content that I mentioned. I didn’t know what all pages were called posts too in PHP. So that first loop I can pull, but I don’t know how to end the loop and start the second loop without either going in to infinite loops.
My code is now this
<?php /* Template Name: example */ ?> <?php get_header(); ?> <div id="content"> <?php include('picturearea.php') ?> <?php query_posts('pagename=example'); ?> <h1><?php the_title(); ?></h1> <div id="entry"> <?php the_content(); ?> </div> <?php query_posts("category_name=example"); ?> <?php while (have_posts()) : the_post(); ?> <h1><?php the_title(); ?></h1> <div id="entry"> <?php the_content(); ?> </div> <?php endwhile; ?> <div id="navigation"> <div id="alignleft"><?php next_posts_link('« Previous Entries') ?></div> <div id="alignright"><?php previous_posts_link('Next Entries »') ?></div> </div> </div> <!-- content --> <h2 class="center">Not Found</h2> <p class="center">Sorry, but you are looking for something that isn't here.</p> <?php get_footer(); ?>Think you could help me with starting and stopping each loop successfully?
Forum: Fixing WordPress
In reply to: Post content on page with new page template?I think that is what I needed, thank you very much!
Forum: Fixing WordPress
In reply to: Post content on page with new page template?Could you at least tell me what the loop is for posting to a new page through the page creator?
Forum: Fixing WordPress
In reply to: Post content on page with new page template?I’ll be doing it for the home page and separate pages. The loop that I have is for blog posts from each category, I need a loop for when I make a new page.
Just say I go to ‘add new’ page and then you see the title and the page content area. I want to choose the right template and then I want to add content and a header to that area so that way it will have the content I add through the page creator and then the extra content that I add later through postings (with the category/post loop).
Forum: Fixing WordPress
In reply to: One post loading over nad over againI figured it out!
<?php query_posts(“category_name=janky”); ?>
<?php while (have_posts()) : the_post(); ?>All I had to do was that!
Forum: Fixing WordPress
In reply to: Problems with a custom about.phpOther then copying and pasting what I want and making a new page through wordpress, I won’t get what I want. I mean, if I hack wordpress up and modify everything, I doubt it will work in an easy fashion. Thank you anyway.
Forum: Fixing WordPress
In reply to: How to make a php link in wordpress?Woops, I was wrong! I need to put the file in the root wordpress folder for it to actually find it. When it does find it though, I start running in to a slew of php errors because the page isn’t in the original theme folder. How can I keep it in the theme folder by doing “/about.php”>About” instead of something like this “/wp-content/themes/exampletheme/about.php”>About“? That would look tacky in the URL.
Forum: Fixing WordPress
In reply to: How to make a php link in wordpress?That worked, thank you! Now I just need to tweak everything and I should be good to go.
Forum: Fixing WordPress
In reply to: Complete WordPress White-outI’m having the same problem! I’ve updated some plugins and my site was working fine. I think it’s a plugin but I can’t remember which one. My site was working fine until I made a new post. Now I’m trying to deactivate all of my plugins and things are going slow and loading wacky. I have no idea what to do! Please help me!