Title: gadgeteffect's Replies | WordPress.org

---

# gadgeteffect

  [  ](https://wordpress.org/support/users/gadgeteffect/)

 *   [Profile](https://wordpress.org/support/users/gadgeteffect/)
 *   [Topics Started](https://wordpress.org/support/users/gadgeteffect/topics/)
 *   [Replies Created](https://wordpress.org/support/users/gadgeteffect/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/gadgeteffect/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/gadgeteffect/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/gadgeteffect/engagements/)
 *   [Favorites](https://wordpress.org/support/users/gadgeteffect/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Voting plugin?](https://wordpress.org/support/topic/voting-plugin-2/)
 *  Thread Starter [gadgeteffect](https://wordpress.org/support/users/gadgeteffect/)
 * (@gadgeteffect)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/voting-plugin-2/#post-1392547)
 * Bump
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Post content on page with new page template?](https://wordpress.org/support/topic/post-content-on-page-with-new-page-template/)
 *  Thread Starter [gadgeteffect](https://wordpress.org/support/users/gadgeteffect/)
 * (@gadgeteffect)
 * [16 years, 6 months ago](https://wordpress.org/support/topic/post-content-on-page-with-new-page-template/#post-1287338)
 * 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('&laquo; Previous Entries') ?></div>
       			<div id="alignright"><?php previous_posts_link('Next Entries &raquo;') ?></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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Post content on page with new page template?](https://wordpress.org/support/topic/post-content-on-page-with-new-page-template/)
 *  Thread Starter [gadgeteffect](https://wordpress.org/support/users/gadgeteffect/)
 * (@gadgeteffect)
 * [16 years, 6 months ago](https://wordpress.org/support/topic/post-content-on-page-with-new-page-template/#post-1287320)
 * I think that is what I needed, thank you very much!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Post content on page with new page template?](https://wordpress.org/support/topic/post-content-on-page-with-new-page-template/)
 *  Thread Starter [gadgeteffect](https://wordpress.org/support/users/gadgeteffect/)
 * (@gadgeteffect)
 * [16 years, 6 months ago](https://wordpress.org/support/topic/post-content-on-page-with-new-page-template/#post-1287248)
 * Could you at least tell me what the loop is for posting to a new page through
   the page creator?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Post content on page with new page template?](https://wordpress.org/support/topic/post-content-on-page-with-new-page-template/)
 *  Thread Starter [gadgeteffect](https://wordpress.org/support/users/gadgeteffect/)
 * (@gadgeteffect)
 * [16 years, 6 months ago](https://wordpress.org/support/topic/post-content-on-page-with-new-page-template/#post-1287239)
 * 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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [One post loading over nad over again](https://wordpress.org/support/topic/one-post-loading-over-nad-over-again/)
 *  Thread Starter [gadgeteffect](https://wordpress.org/support/users/gadgeteffect/)
 * (@gadgeteffect)
 * [16 years, 6 months ago](https://wordpress.org/support/topic/one-post-loading-over-nad-over-again/#post-1286141)
 * I 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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Problems with a custom about.php](https://wordpress.org/support/topic/problems-with-a-custom-aboutphp/)
 *  Thread Starter [gadgeteffect](https://wordpress.org/support/users/gadgeteffect/)
 * (@gadgeteffect)
 * [16 years, 6 months ago](https://wordpress.org/support/topic/problems-with-a-custom-aboutphp/#post-1286125)
 * Other 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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to make a php link in wordpress?](https://wordpress.org/support/topic/how-to-make-a-php-link-in-wordpress/)
 *  Thread Starter [gadgeteffect](https://wordpress.org/support/users/gadgeteffect/)
 * (@gadgeteffect)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/how-to-make-a-php-link-in-wordpress/#post-1255793)
 * “? That would look tacky in the URL.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to make a php link in wordpress?](https://wordpress.org/support/topic/how-to-make-a-php-link-in-wordpress/)
 *  Thread Starter [gadgeteffect](https://wordpress.org/support/users/gadgeteffect/)
 * (@gadgeteffect)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/how-to-make-a-php-link-in-wordpress/#post-1255792)
 * That worked, thank you! Now I just need to tweak everything and I should be good
   to go.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Complete WordPress White-out](https://wordpress.org/support/topic/complete-wordpress-white-out/)
 *  [gadgeteffect](https://wordpress.org/support/users/gadgeteffect/)
 * (@gadgeteffect)
 * [17 years ago](https://wordpress.org/support/topic/complete-wordpress-white-out/#post-1101158)
 * I’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!

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