I want to get the page content (so i can parse the tags/short-codes in it), but i don't want to output the result itself to the browser (i.e. echo=0).
I tried get_the_content(); but its the same deal.
|
I want to get the page content (so i can parse the tags/short-codes in it), but i don't want to output the result itself to the browser (i.e. echo=0). I tried get_the_content(); but its the same deal. |
|||
|
Where are you doing your code parsing? If you're doing it directly in the template file, inside the Loop, then you should be using However, it might be more efficient to filter
EDIT If, for whatever reason, you just want to parse
|
|||||||
|
|
You can try this :
|
|||
|
get_the_content()does not echo output, it is returned. So what exactly is your problem with it? – Rarst♦ Jul 14 '11 at 16:32