Title: outrix's Replies | WordPress.org

---

# outrix

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [List WordPress Categories with Cat Descriptions](https://wordpress.org/support/topic/list-wordpress-categories-with-cat-descriptions/)
 *  [outrix](https://wordpress.org/support/users/outrix/)
 * (@outrix)
 * [18 years, 4 months ago](https://wordpress.org/support/topic/list-wordpress-categories-with-cat-descriptions/#post-680867)
 *     ```
       <ul>
        <?php
         $categories=  get_categories();
         foreach ($categories as $cat) {
       	echo '<li>'.'<a href="'.get_category_link($cat->cat_ID).'">'.$cat->description.'</a>'.'</li>';
         }
        ?>
       </ul>
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Showing just one category WITHOUT using the cat-ID](https://wordpress.org/support/topic/showing-just-one-category-without-using-the-cat-id/)
 *  [outrix](https://wordpress.org/support/users/outrix/)
 * (@outrix)
 * [18 years, 4 months ago](https://wordpress.org/support/topic/showing-just-one-category-without-using-the-cat-id/#post-680200)
 * try this code:
 *     ```
       <?php query_posts('cat=13'); ?>
       <?php while (have_posts()) : the_post(); ?>
   
           <h3 id="post-<?php the_ID(); ?>">
             <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>
           </h3>
           <?php endwhile; else: ?>
           <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
           <?php endif; ?>
       ```
   
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [Custom fields in blog entries](https://wordpress.org/support/topic/custom-fields-in-blog-entries/)
 *  [outrix](https://wordpress.org/support/users/outrix/)
 * (@outrix)
 * [18 years, 4 months ago](https://wordpress.org/support/topic/custom-fields-in-blog-entries/#post-679036)
 * oo, sorry..
    it must be <?php echo get_post_meta(10,’Architect’,true) ?>
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Displaying Images Based On Date](https://wordpress.org/support/topic/displaying-images-based-on-date/)
 *  [outrix](https://wordpress.org/support/users/outrix/)
 * (@outrix)
 * [18 years, 4 months ago](https://wordpress.org/support/topic/displaying-images-based-on-date/#post-678898)
 * try this code:
    `<img src="<?php echo(get_bloginfo('url').'/comics/'.date('Y-
   m-d')'); ?>.gif">`
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [RSS only showing one post and only the title! T_T](https://wordpress.org/support/topic/rss-only-showing-one-post-and-only-the-title-t_t/)
 *  [outrix](https://wordpress.org/support/users/outrix/)
 * (@outrix)
 * [18 years, 4 months ago](https://wordpress.org/support/topic/rss-only-showing-one-post-and-only-the-title-t_t/#post-678896)
 * your feed are not validated
    [http://validator.w3.org/feed/check.cgi?url=http%3A%2F%2Fdarkshadowmx.net%2F%3Ffeed%3Drss2](http://validator.w3.org/feed/check.cgi?url=http%3A%2F%2Fdarkshadowmx.net%2F%3Ffeed%3Drss2)
 * author name in feed is strange: <ADMINNICENAME>
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [Custom fields in blog entries](https://wordpress.org/support/topic/custom-fields-in-blog-entries/)
 *  [outrix](https://wordpress.org/support/users/outrix/)
 * (@outrix)
 * [18 years, 4 months ago](https://wordpress.org/support/topic/custom-fields-in-blog-entries/#post-678894)
 * (3) `<?php get_post_meta(10,'Architect',true); ?>`
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Redirect to main page](https://wordpress.org/support/topic/redirect-to-main-page/)
 *  [outrix](https://wordpress.org/support/users/outrix/)
 * (@outrix)
 * [18 years, 4 months ago](https://wordpress.org/support/topic/redirect-to-main-page/#post-678892)
 * open 404.php file at your theme and replace code by the following:
 *     ```
       <?php
       header("HTTP/1.1 301 Moved Permanently");
       header("Location: ".get_bloginfo('url'));
       exit();
       ?>
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Category Pictures](https://wordpress.org/support/topic/category-pictures-1/)
 *  [outrix](https://wordpress.org/support/users/outrix/)
 * (@outrix)
 * [18 years, 4 months ago](https://wordpress.org/support/topic/category-pictures-1/#post-678888)
 * Try this code
 *     ```
       <?php /* If this is a category archive */ if (is_category()) { ?>
       Archive for the category <?php single_cat_title(); ?>
       <?php $cat = intval( get_query_var('cat') );
       	if ( !empty($cat) && !(strtoupper($cat) == 'ALL') ) {?>
       <img src="http://mydomain]/images/projects-icon-big-' . <?php echo $cat; ?> . '.gif" border="0" hspace="2" vspace="2" alt="' . <?php single_cat_title(); ?>. '" />
       <?php } ?>
       ```
   

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