shortcode fails in input field id but works elsewhere
-
shortcode in functions.php
/* [this_post_num] shortcode */ add_shortcode( 'this_post_num', 'this_return_post_id' ); function this_return_post_id() { return get_the_ID(); }
code in the post
<input id="handle[this_post_num]" type="checkbox" name="collapse" /> <h2 class="handle"> <label for="handle[this_post_num]">html</label> </h2>
view source in the page
<input id="handle[this_post_num]" type="checkbox" name="collapse" /></p> <h2 class="handle"> <label for="handle957">html</label><br /> </h2>
The page I need help with: [log in to see the link]
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘shortcode fails in input field id but works elsewhere’ is closed to new replies.