Title: eft0's Replies | WordPress.org

---

# eft0

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [subcategory posts pagination](https://wordpress.org/support/topic/subcategory-posts-pagination-1/)
 *  Thread Starter [eft0](https://wordpress.org/support/users/eft0/)
 * (@eft0)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/subcategory-posts-pagination-1/#post-2435625)
 * novakpeter: I solve it creating a subpage with the subcategory name, and putting
   the code on it 🙁
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [subcategory posts pagination](https://wordpress.org/support/topic/subcategory-posts-pagination-1/)
 *  Thread Starter [eft0](https://wordpress.org/support/users/eft0/)
 * (@eft0)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/subcategory-posts-pagination-1/#post-2435491)
 * Here is the code:
 *     ```
       <?php
       $current_category = single_cat_title("", false);
       $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
       query_posts("category_name=". $current_category ."&posts_per_page=3&paged=". $paged);
       ?>
       <?php $i = 1; if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
       <div class="contenidos730">
       	<?php if ($i==1): ?><h3><?php echo $current_category ?></h3><?php endif; ?>
       	<div class="caja730">
       		<h1><?php the_title(); ?></h1>
       		<?php the_content(); ?>
   
       	</div>
       	<div class="shad730"><img src="<?php bloginfo('template_directory') ?>/img/caja730_shadow.png"></div>
       </div>
       <?php $i++; endwhile; endif; ?>
   
       <?php wp_paginate(); ?>
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Website Not Working](https://wordpress.org/support/topic/website-not-working-4/)
 *  [eft0](https://wordpress.org/support/users/eft0/)
 * (@eft0)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/website-not-working-4/#post-2435330)
 * in wp-config.php change the
 * define(‘WP_DEBUG’, false);
 * to true, then watch again your page and copy the error here to see what’s happen.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Missing a temporary folder](https://wordpress.org/support/topic/missing-a-temporary-folder-9/)
 *  [eft0](https://wordpress.org/support/users/eft0/)
 * (@eft0)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/missing-a-temporary-folder-9/#post-2435326)
 * That error is thrown by PHP and likely you will need to contact your host to 
   have them specify a temporary directory (e.g. upload_tmp_dir in php.ini)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Change font for one page](https://wordpress.org/support/topic/change-font-for-one-page/)
 *  [eft0](https://wordpress.org/support/users/eft0/)
 * (@eft0)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/change-font-for-one-page/#post-2435325)
 * you must edit and change the CSS stylesheet
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Show posts pertaining to a single category – on only that category page?](https://wordpress.org/support/topic/show-posts-pertaining-to-a-single-category-on-only-that-category-page/)
 *  [eft0](https://wordpress.org/support/users/eft0/)
 * (@eft0)
 * [16 years ago](https://wordpress.org/support/topic/show-posts-pertaining-to-a-single-category-on-only-that-category-page/#post-1487772)
 * Using query_post() ?
 * query_posts(‘category_name=Cupcake’);
 * Then just the loop.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: NextGEN Gallery] – single image comments](https://wordpress.org/support/topic/plugin-nextgen-gallery-5/)
 *  [eft0](https://wordpress.org/support/users/eft0/)
 * (@eft0)
 * [17 years, 9 months ago](https://wordpress.org/support/topic/plugin-nextgen-gallery-5/#post-837654)
 * You can add a single image in a post or page:
 * ex: [singlepic=id,width,height,mode,float]
 * And the comments are provided from WP.

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