• Resolved Spencer Hill

    (@ws5f3dj7)


    Heya – I’m working on this site: https://expedition-africa.theportlandco.com

    And the three boxes at the bottom of the page need to be editable by the user, however, I’m unsure if this is possible currently. I was wondering if someone could tell me whether or not this is possible, and if so what syntax and snippets I use. Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • There are a couple of ways you can go about this.

    You can either create three different custom fields, so say box1, box2, box3 and then pull the custom field info and insert them in your home page template like this:

    <?php $key="box1"; echo get_post_meta($post->ID, $key, true); ?>

    Or you could use the improve page plugin. You would create three separate pages and then include them in your home page template like this:

    <?php if(function_exists('iinclude_page')) iinclude_page(261); ?>

    Thread Starter Spencer Hill

    (@ws5f3dj7)

    That’s perfect, thank you so much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How do you define an editable area?’ is closed to new replies.