execution of shortcode

View: New views
3 Messages — Rating Filter:   Alert me  

execution of shortcode

by Jake McMurchie-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi.

I have this in my functions.php:

add_shortcode('ataglance', 'ataglance_function');
function ataglance_function() {
?>
<table>
<!-- // generate table from xml file -->
</table>
<?php
}

And this in my page:

test copy

[ataglance]

However, the page output is

<table>...</table>
test copy

How can I make sure the code is executed in order?

Thanks in advance.

Jake
_______________________________________________
wp-hackers mailing list
wp-hackers@...
http://lists.automattic.com/mailman/listinfo/wp-hackers

Re: execution of shortcode

by Simon Wheatley-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On Thu, Jun 11, 2009 at 9:48 AM, Jake
McMurchie<jake.mcmurchie@...> wrote:

> I have this in my functions.php:
>
> add_shortcode('ataglance', 'ataglance_function');
> function ataglance_function() {
> ?>
> <table>
> <!-- // generate table from xml file -->
> </table>
> <?php
> }
>

Your function needs to *return* not echo the HTML.

S


---
Sweet Interaction Ltd is Registered in England/Wales, no. 6610741
Registered office: 7 Malton Av, Manchester, M21 8AT
_______________________________________________
wp-hackers mailing list
wp-hackers@...
http://lists.automattic.com/mailman/listinfo/wp-hackers

Re: execution of shortcode

by Jake McMurchie-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Excellent. Thanks Simon.

2009/6/11 Simon Wheatley <simon@...>:

> On Thu, Jun 11, 2009 at 9:48 AM, Jake
> McMurchie<jake.mcmurchie@...> wrote:
>> I have this in my functions.php:
>>
>> add_shortcode('ataglance', 'ataglance_function');
>> function ataglance_function() {
>> ?>
>> <table>
>> <!-- // generate table from xml file -->
>> </table>
>> <?php
>> }
>>
>
> Your function needs to *return* not echo the HTML.
>
> S
>
>
> ---
> Sweet Interaction Ltd is Registered in England/Wales, no. 6610741
> Registered office: 7 Malton Av, Manchester, M21 8AT
> _______________________________________________
> wp-hackers mailing list
> wp-hackers@...
> http://lists.automattic.com/mailman/listinfo/wp-hackers
>
_______________________________________________
wp-hackers mailing list
wp-hackers@...
http://lists.automattic.com/mailman/listinfo/wp-hackers