Hey, everyone I’m attempting to import specific parts of a wordpress post to be displayed differently on the front page of a website. So far I have a thumbnail, the content, below. BUT what I’d really like to do is add a table to display data on the right hand side. Wondering if anyone has ever figured out how to do this dynamically.
Also here is my code:
ID), ”); ?>
ob_start();
the_content();
$postOutput = preg_replace(‘/
]+./’,”, ob_get_contents());
ob_end_clean();
echo $postOutput;
?>