Title: paldimo's Replies | WordPress.org

---

# paldimo

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [If the_author_descrption exists](https://wordpress.org/support/topic/if-the_author_descrption-exists/)
 *  [paldimo](https://wordpress.org/support/users/paldimo/)
 * (@paldimo)
 * [16 years, 11 months ago](https://wordpress.org/support/topic/if-the_author_descrption-exists/#post-1196766)
 * I want to do something similar but with the custom tags, for instance with titles,
   If I have a custom tag called “meta-title” I’m currently inserting it into the
   header using the following code;
 * `<?php $key="meta-title"; echo get_post_meta($post->ID, $key, true); ?>`
 * could the same code be applied and how?
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [Stats](https://wordpress.org/support/topic/stats-10/)
 *  [paldimo](https://wordpress.org/support/users/paldimo/)
 * (@paldimo)
 * [16 years, 12 months ago](https://wordpress.org/support/topic/stats-10/#post-1185979)
 * You view the stats through google, you will create a login there like you would
   a gmail account. They have a GRUNDLE of statistics, some of which may not really
   be important, but definitely interesting.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to add different header image for every page](https://wordpress.org/support/topic/how-to-add-different-header-image-for-every-page/)
 *  [paldimo](https://wordpress.org/support/users/paldimo/)
 * (@paldimo)
 * [16 years, 12 months ago](https://wordpress.org/support/topic/how-to-add-different-header-image-for-every-page/#post-1188517)
 * I have a client who wanted an arm of their site to use a different image set (
   header, footer, y-repeat) and I worked up the following;
 *     ```
       <body id="body<?php $bodyid=$_SERVER['REQUEST_URI']; echo substr($bodyid,1,4);?>">
       ```
   
 * This code pulls the URL for the page so that a site like [http://www.mydomain.com/blog/](http://www.mydomain.com/blog/)
   would show up as “blog”.
 * The $bodyid is the variable created
    The “1” is the start position The “4” is
   the number of characters to list
 * I preceded the whole thing with “body” so that the “<body id=”>” is never blank.
 * Once you get it working, you then just include the declarations for what you 
   want it to do.
 *     ```
       body#bodyhome {background-image: url(/home.jpg)}
       body#bodyabou {background-image: url(/about.jpg)}
       body#bodycont {background-image: url(/contact.jpg)}
       ```
   
 * *This method works great if you want an entire arm of your site to have the same
   graphic. But if you want a different graphic for EVERY page, then marcovidor’s
   method would be best.
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [Stats](https://wordpress.org/support/topic/stats-10/)
 *  [paldimo](https://wordpress.org/support/users/paldimo/)
 * (@paldimo)
 * [16 years, 12 months ago](https://wordpress.org/support/topic/stats-10/#post-1185899)
 * Sign up for google analytics.
 * It’s free, and you just paste one code into your footer.php file. The reporting
   is pretty detailed.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Is there any theme especially for a download site?](https://wordpress.org/support/topic/is-there-any-theme-especially-for-a-download-site/)
 *  [paldimo](https://wordpress.org/support/users/paldimo/)
 * (@paldimo)
 * [17 years ago](https://wordpress.org/support/topic/is-there-any-theme-especially-for-a-download-site/#post-1186300)
 * I’ve got a site for photoshop freebies. I’m not sure what you are looking for
   exactly, but it might give you an idea. Its located [Here](http://adoberesource.com).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Google Analytics plugins?](https://wordpress.org/support/topic/google-analytics-plugins/)
 *  [paldimo](https://wordpress.org/support/users/paldimo/)
 * (@paldimo)
 * [17 years ago](https://wordpress.org/support/topic/google-analytics-plugins/#post-1185754)
 * If you don’t mind looking at the analytics through google, just sign up there
   and install the tracking code in the footer.php file. It beats having to deal
   with any extra plugins.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Replacing header text for header image](https://wordpress.org/support/topic/replacing-header-text-for-header-image/)
 *  [paldimo](https://wordpress.org/support/users/paldimo/)
 * (@paldimo)
 * [17 years ago](https://wordpress.org/support/topic/replacing-header-text-for-header-image/#post-1185191)
 * Check out this post. Nine techniques on how to do that exact thing.
 * [http://css-tricks.com/css-image-replacement/](http://css-tricks.com/css-image-replacement/)
 * It beats telling you myself…
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to place some menu items separate from the rest?](https://wordpress.org/support/topic/how-to-place-some-menu-items-separate-from-the-rest/)
 *  [paldimo](https://wordpress.org/support/users/paldimo/)
 * (@paldimo)
 * [17 years ago](https://wordpress.org/support/topic/how-to-place-some-menu-items-separate-from-the-rest/#post-1185189)
 * Yes, I wanted to do the same thing. I don’t actually have atahualpa installed
   but I assume it will work either way.
 * Here is the code I started out with;
    HTML;
 *     ```
       <div id="globalnav">
       	<ul>
       		<li class="page_item page-item-2 current_page_item"><a href="#" title="Home">Home</a></li>
       		<li class="page_item page-item-44"><a href="#" title="Contact Us">Contact Us</a></li>
       	</ul>
       </div>
       ```
   
 * CSS;
 *     ```
       #globalnav li {
       	float: left;
       	}
   
       #globalnav li.page-item-44 {
       	float: right;
       	}
       ```
   
 * Basically the two line items would be floated left to begin with, and you can
   pick specific page items to be floated right. The result in this example is that
   the “Contact Us” link (page-item-44) was floated right. I found the page item
   just by viewing source once I created the pages I needed.

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