Feature Request: Access "post_content" value in templates
-
I wanted to post this separately in case it got buried in my support request thread below!
It’s confusing to have the usual “Post Content” section when adding/editing a download but have no way to access its value in download templates.
I’d like to request that the following code be added to
/includes/class-dlm-download.php
:/** * get_the_post_content function. * * @access public * @return void */ public function get_the_post_content() { return wpautop( do_shortcode( $this->post->post_content ) ); } /** * the_post_content function. * * @access public * @return void */ public function the_post_content() { echo $this->get_the_post_content(); }
Thanks for your consideration! ??
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Feature Request: Access "post_content" value in templates’ is closed to new replies.