I have a homepage that contains a hero div, in which I'm trying to create a preview which retrieves as much content from the site's About Us page (currently at http://localhost/wordpress/about/) to fill the container div, and then truncates it with a ...
and a Read More
link that takes them to the page itself to continue reading it.
How exactly would such a thing be accomplished in Wordpress and PHP? I've looked at several similar questions, but all seem to be concerned with retrieving either the content of a post or the current page, rather than displaying the content of another page.
I'm creating this site pro-bono for a non-profit charity to an important deadline, but unfortunately don't have anywhere near enough understanding of PHP to code this feature myself, so I'd really appreciate any help here.
Here's the most minimal version of the markup I can create:
<?php
get_header();
?>
<div class="hero-image-container">
<div id="welcome-about-container">
<div id="welcome-about-text">
<!-- About Us preview/PHP script goes here -->
</div>
</div>
</div>