Forums

Brief About Us in Theme Footer (2 posts)

  1. millsy
    Member
    Posted 3 years ago #

    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?

  2. stvwlf
    Member
    Posted 3 years ago #

    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>";
    ?>

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags

No tags yet.