Insert a formatted page in my home.
-
Hello
I want to insert the content of a page in my wordpress homepage (it’s a special static homepage).
I made this hack :$pages = get_pages(); foreach ($pages as $pagg) { if( $pagg->post_title == "Sound" ){ $page_id = $pagg->ID; $page_data = get_page( $page_id ); echo $page_data->post_content; } }
It gives me the raw content, unformated. I’m using dewplayer in the “Sound” page, and it ouputs “[dewplayer:https://cheebazz.com/mysoundfolder/myfile.mp3%5D” (as I save it in the page) instead of the flash control.
Is there a solution to display the page as it should be displayed ?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Insert a formatted page in my home.’ is closed to new replies.