Title: 's Replies | WordPress.org

---

# luiscastillocr

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: Custom Post Template] No Dropdown in page editor](https://wordpress.org/support/topic/plugin-custom-post-template-no-dropdown-in-page-editor/)
 *  Thread Starter [luiscastillocr](https://wordpress.org/support/users/luiscastillocr/)
 * (@luiscastillocr)
 * [16 years, 1 month ago](https://wordpress.org/support/topic/plugin-custom-post-template-no-dropdown-in-page-editor/#post-1440605)
 * I was wrong with something 😛
 * I was confused with the wordpress page template functionality,so , the plugin
   is fine, my problem was that wordpress not shows the dropdown of templates for
   pages and i thought that the plugin has a conflict with this.
 * I found a simple solution for this
 * – select the default theme.
    – logout – login again – select your theme and voilá
   the dropdown shows again!
 * I hope this help to someone..
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [Use bloinfo() information inside the Page Editor](https://wordpress.org/support/topic/use-bloinfo-information-inside-the-page-editor/)
 *  Thread Starter [luiscastillocr](https://wordpress.org/support/users/luiscastillocr/)
 * (@luiscastillocr)
 * [16 years, 8 months ago](https://wordpress.org/support/topic/use-bloinfo-information-inside-the-page-editor/#post-1189902)
 * I found a solution here
 * [http://codex.wordpress.org/Shortcode_API](http://codex.wordpress.org/Shortcode_API)
 *     ```
       function get_siteurl($atts, $content=null) {
       	 return get_bloginfo('wpurl');
       }
       add_shortcode('siteurl', 'get_siteurl');
   
       function get_themeurl($atts, $content=null) {
       	 return get_bloginfo('template_url');
       }
       add_shortcode('themeurl', 'get_themeurl');
       ```
   
 * Then in the content just write [themeurl] or [siteurl]
 * 😀
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [translation](https://wordpress.org/support/topic/translation-9/)
 *  [luiscastillocr](https://wordpress.org/support/users/luiscastillocr/)
 * (@luiscastillocr)
 * [16 years, 8 months ago](https://wordpress.org/support/topic/translation-9/#post-1189896)
 * The link not appear in my latest post :S
 * [http://www.qianqin.de/qtranslate/](http://www.qianqin.de/qtranslate/)
 * Sorry… 😛
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [translation](https://wordpress.org/support/topic/translation-9/)
 *  [luiscastillocr](https://wordpress.org/support/users/luiscastillocr/)
 * (@luiscastillocr)
 * [16 years, 8 months ago](https://wordpress.org/support/topic/translation-9/#post-1189895)
 * Use this, is pretty good 😀
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Include or not the menu columns for each page](https://wordpress.org/support/topic/include-or-not-the-menu-columns-for-each-page/)
 *  Thread Starter [luiscastillocr](https://wordpress.org/support/users/luiscastillocr/)
 * (@luiscastillocr)
 * [16 years, 10 months ago](https://wordpress.org/support/topic/include-or-not-the-menu-columns-for-each-page/#post-1122089)
 * Thanks for try to help me esmi, but your code posted above is not exactly the
   same thing that i found, anyway, thanks!!
 * by the way, do you know how to do the same thing with the categories page? 😛
 * Thanks…
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Include or not the menu columns for each page](https://wordpress.org/support/topic/include-or-not-the-menu-columns-for-each-page/)
 *  Thread Starter [luiscastillocr](https://wordpress.org/support/users/luiscastillocr/)
 * (@luiscastillocr)
 * [16 years, 10 months ago](https://wordpress.org/support/topic/include-or-not-the-menu-columns-for-each-page/#post-1122007)
 * After research all the day i found the solution:
 * [Here](http://www.straightupsearch.com/archives/2009/04/custom_wordpres.html)
   explain how add a custom template for pages and post-pages
 * [Here](http://wordpress.org/extend/plugins/custom-post-template/) is the plugin
   to manage the custom templates for the post pages
 * The dafault template file of post-pages is single.php
    The dafault template file
   of pages is page.php
 * Add this code for single-pages template at the top of the file
 *     ```
       <?php
       /*
       Template Name: custom_simple_template_name
       */
       ?>
       ```
   
 * Add this code for post-pages template at the top of the file
 *     ```
       <?php
       /*
       Template Name Posts: custom_post_template_name
       */
       ?>
       ```
   
 * I hope this help someone else.
 * Well i am looking for something like that for the category pages, if I find something,
   I will post it here
 * greetings…
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Include or not the menu columns for each page](https://wordpress.org/support/topic/include-or-not-the-menu-columns-for-each-page/)
 *  Thread Starter [luiscastillocr](https://wordpress.org/support/users/luiscastillocr/)
 * (@luiscastillocr)
 * [16 years, 10 months ago](https://wordpress.org/support/topic/include-or-not-the-menu-columns-for-each-page/#post-1121975)
 * Thanks for trying to help, [here](http://codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates)
   I found a solution for the pages but i need something like that for a post pages
   too.
 * I am still looking for..
 * Thanks!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Include or not the menu columns for each page](https://wordpress.org/support/topic/include-or-not-the-menu-columns-for-each-page/)
 *  Thread Starter [luiscastillocr](https://wordpress.org/support/users/luiscastillocr/)
 * (@luiscastillocr)
 * [16 years, 10 months ago](https://wordpress.org/support/topic/include-or-not-the-menu-columns-for-each-page/#post-1121955)
 * Thanks for reply, but i need something more easy for my clients, i am still looking
   for, I’ll have to do it myself :P.
 * If someone knows something like i looking for please reply here!!

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