Tagged Questions
0
votes
1answer
19 views
Retrieve page content and pass to PHP?
I'm new to WP but not PHP.
I've a custom page that I have a PHP call to do some processing on the page content.
the_content() even when enclosed in a function call
<?php ...
1
vote
1answer
86 views
Loop after page content
I just upgraded to 3.4.2 from 2.9 (i know, i know, but if it ain't broke...) I have page templates that are (or at least were) set up to display the page content first, then start a loop of posts, ...
1
vote
1answer
72 views
How to place HTML tags in content from the_content()?
Firstly, I am new to Wordpress so thank you for your patience.
I have a list of posts (with excerpts) being displayed in the page using Short Tags.
The output is fine , However, I wish to add and ...
0
votes
1answer
168 views
Adding if statement into the_content()
I've created my own page template where I have a list of posts coming in directly below the content as so:
<?php the_content(); ?>
<?php query_posts('category_name=vacancies'); ...
3
votes
2answers
4k views
Get content from one page and show it on another page
So, I've been googling and reading and testing and failing.
I'm fairly new to php, so don't expect to much :)
I'm working on a new design, and I want to show content from the about page on my ...
0
votes
2answers
1k views
Get the Page Content,without generating HTML
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 ...