Title: [Plugin: Reed Write] Feature Requests
Last modified: August 20, 2016

---

# [Plugin: Reed Write] Feature Requests

 *  Plugin Author [Brian S. Reed](https://wordpress.org/support/users/iambriansreed/)
 * (@iambriansreed)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/plugin-reed-write-feature-requests/)
 * The following is a Feature Request Topic.
 * Reply with ideas, suggestions, or features you would like to see added to this
   plugin.
 * [http://wordpress.org/extend/plugins/reed-write/](http://wordpress.org/extend/plugins/reed-write/)

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

 *  [bridgetwes](https://wordpress.org/support/users/bridgetwes/)
 * (@bridgetwes)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/plugin-reed-write-feature-requests/#post-2234032)
 * Have you been able to get tinymce working within Reed Write on types of Multiple
   Lines of Text? I’ve tried adding theEditor class to the textbox with jquery but
   things get really funky.
 * Reed Write does everything I need except this.
 *  Plugin Author [Brian S. Reed](https://wordpress.org/support/users/iambriansreed/)
 * (@iambriansreed)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/plugin-reed-write-feature-requests/#post-2234042)
 * Oh man. I will investigate this further. Check it out.
    New Version. [http://wordpress.org/extend/plugins/reed-write/](http://wordpress.org/extend/plugins/reed-write/)
   Documentation. [http://scottreeddesign.com/project/reed-write](http://scottreeddesign.com/project/reed-write)
 *  Plugin Author [Brian S. Reed](https://wordpress.org/support/users/iambriansreed/)
 * (@iambriansreed)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/plugin-reed-write-feature-requests/#post-2234045)
 * I have been asked to get the search to include the field data as well. Look for
   this in the next version.
 *  Plugin Author [Brian S. Reed](https://wordpress.org/support/users/iambriansreed/)
 * (@iambriansreed)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/plugin-reed-write-feature-requests/#post-2234046)
 * 1.1.0 custom meta field values now included in search
 *  [deflime](https://wordpress.org/support/users/deflime/)
 * (@deflime)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/plugin-reed-write-feature-requests/#post-2234053)
 * What about having a custom template for that specific Content Type?
 * Trying to use multiple posting areas but I am looking to have a different template
   for two of them.
 *  [deflime](https://wordpress.org/support/users/deflime/)
 * (@deflime)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/plugin-reed-write-feature-requests/#post-2234054)
 * Here’s how far I got.
 * Looks like I didn’t need to go so far, [http://codex.wordpress.org/images/1/18/Template_Hierarchy.png](http://codex.wordpress.org/images/1/18/Template_Hierarchy.png)
 * However the above graphic doesn’t seem to include a custom index page for the
   new custom type so the following serves some purpose.
 *     ```
       flush_rewrite_rules(); // Line 391, your last piece of code before..
   
       		add_action("template_redirect", '_rw_template_redirect');
       	}
   
       	function _rw_template_redirect()	{
       		global $wp;
   
       // list custom types in an array, this could be better, of course
       		$rw_custom_types = array('custom-type-1-slug', 'custom-type-2-slug');
   
       		if (in_array($wp->query_vars["post_type"], $rw_custom_types)) {
   
       			if ( is_robots() ) :
       				do_action('do_robots');
       				return;
       			elseif ( is_feed() ) :
       				do_feed();
       				return;
       			elseif ( is_trackback() ) :
       				include( ABSPATH . 'wp-trackback.php' );
       				return;
       			elseif($wp->query_vars["name"]):
       				include(TEMPLATEPATH . "/single-".$wp->query_vars["post_type"].".php");
       				die();
       			else:
       				include(TEMPLATEPATH . "/".$wp->query_vars["post_type"].".php");
       				die();
       			endif;
       		}
       ```
   
 * You may just need to implemented a bit of the above and simply include a link
   to the that WP Codex graphic to aid in ppl using their own templates.
 *  Plugin Author [Brian S. Reed](https://wordpress.org/support/users/iambriansreed/)
 * (@iambriansreed)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/plugin-reed-write-feature-requests/#post-2234055)
 * [@deflime](https://wordpress.org/support/users/deflime/)
 * Thanks for the input. I will look into this. I just created a page and built 
   the loop in to the page but if this solution works I will definitely implement.
   _This is one of those holes with custom post types that WordPress needs to fix._
 *  [alvaro05](https://wordpress.org/support/users/alvaro05/)
 * (@alvaro05)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/plugin-reed-write-feature-requests/#post-2234060)
 * When adding and image, it would be great if you could also upload it instead 
   of just selecting it from the library.
 *  [alvaro05](https://wordpress.org/support/users/alvaro05/)
 * (@alvaro05)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/plugin-reed-write-feature-requests/#post-2234061)
 * As well as limiting the number of images to upload. Also it would be cool to 
   set (image) post-thumbnail.
 *  Plugin Author [Brian S. Reed](https://wordpress.org/support/users/iambriansreed/)
 * (@iambriansreed)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/plugin-reed-write-feature-requests/#post-2234062)
 * [@alvaro05](https://wordpress.org/support/users/alvaro05/) Thanks to a donation
   I added a download tab to the image select field. Your second suggestion I will
   roll into a new field coming out called attach file. Like attach image but you
   can specify when editing the content type field which file types to allow. As
   well as limiting number to be attached.
 *  [schulte](https://wordpress.org/support/users/schulte/)
 * (@schulte)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/plugin-reed-write-feature-requests/#post-2234063)
 * How about extending select_date.php to include date AND time? I think it might
   be useful to associate a time with a specific date.
 *  Plugin Author [Brian S. Reed](https://wordpress.org/support/users/iambriansreed/)
 * (@iambriansreed)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/plugin-reed-write-feature-requests/#post-2234065)
 * Good idea. Will have to add a date and time field eventually.
 *  [tanko](https://wordpress.org/support/users/tanko/)
 * (@tanko)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-reed-write-feature-requests/#post-2234098)
 * I’m a total noob and would like an easy way to style the way to display the custom
   fields or create a custom post type template.
 * If you know a hard way I may try it too. Thanks for the great plugin.

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

The topic ‘[Plugin: Reed Write] Feature Requests’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/reed-write.svg)
 * [Reed Write](https://wordpress.org/plugins/reed-write/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/reed-write/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/reed-write/)
 * [Active Topics](https://wordpress.org/support/plugin/reed-write/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/reed-write/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/reed-write/reviews/)

 * 13 replies
 * 6 participants
 * Last reply from: [tanko](https://wordpress.org/support/users/tanko/)
 * Last activity: [14 years, 6 months ago](https://wordpress.org/support/topic/plugin-reed-write-feature-requests/#post-2234098)
 * Status: not a support question