In my theme (magazeen) in my footer there is a brief about us section. I thought I would have to 'hardcode' this in but there is a line that says:
<?php echo get_settings( 'mag_about_blog' ); ?>
Does this mean that there is an about us section I can enter into in the admin section?
Hi
I don't know the answer to that question, but if that is not how your theme works, here is some code that will put the contents of a page named 'about' in the footer. Put the code in your theme's footer.php file
<?php
$about_id = 2; // substitute page_id of your about for "2"
$about_page = get_post($about_id);
echo "<p>$about_page->post_content</p>";
?>