Archived topic
Shortcode problem with lgc
1 reply · Started by Hans on April 20, 2017
Viewing posts 1–2 of 2
Hi Tom or Leo,
this image shows my html code:
The shortcode is very simple:
function f_vertraulich() {
if (is_user_logged_in()) {
?><br><h3><strong>P. S.: </strong>Als Mitglied unserer Gremien stehen Ihnen hier auch die Unterlagen der nicht öffentlichen Sitzungen zur Verfügung. Ausgeschlossen sind jedoch Tischvorlagen, die nur in der Sitzung eingesehen werden können.</h3>
<?php
};
}
add_shortcode('vertraulich', 'f_vertraulich');
And at the end this is the output
to the screen.
The shortcode is outputted before the content of the lgc columns. What do I make wrong????
Hansimage
You would have to use output buffering in your shortcode. More info on that here: https://codex.wordpress.org/Shortcode_API#Output
This archived topic is closed to new replies.