Adding Specific Formated Page Content to Home Page
-
Hi,
I need some help adding formatted content from a specific page to my home page.
I used this code to get the content:
<?php
$my_id = 37;
$post_id_37 = get_post($my_id);
$content = $post_id_37->post_content;
$content = apply_filters(‘the_content’, $content);
$content = str_replace(‘]]>’, ‘]]>’, $content);
echo $content;
?>But it loses its formatting (links etc.)
Thanks,
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Adding Specific Formated Page Content to Home Page’ is closed to new replies.