Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6351697
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T22:03:18+00:00 2026-05-24T22:03:18+00:00

I’ve been looking into ways to make the wordpress page creation be a little

  • 0

I’ve been looking into ways to make the wordpress page creation be a little more flexible.

I’ve gotten as far as defining my own template pages and using those to create the new pages, but I’d like to be able to have a way to input content for more than just the one post div.

When creating a page it is similar to creating a post – i.e you get to edit a title and a bit of content but that’s it.

Does anyone know of a method or plugin that would allow editing the title and content of 2 divs on the same page during page creation?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T22:03:21+00:00Added an answer on May 24, 2026 at 10:03 pm

    I suggest you use Magic Fields. It basically allows you to add a lot of custom fields. It allows you to build advanced templates. Example of one I created recently:

    <?php get_header();?> <div id="left_sidebar" class="grid_3">
        <ul class="post_menu sf-menu sf-vertical">
            <li class="active"><a href="<?php echo get_pagelink($post->ID); ?>"><?php echo $post->post_title; ?></a></li>
    
            <?php $currentPost = $post; ?>
    
            <!-- Start Loop -->
            <?php   $args=array(
                      'post_type' => "post",
                      'category__in' => get_page_cats($post->ID),
                      'showposts' => '5000',
                      'order_by' => 'date',
                      'order' => 'ASC');
            ?>
            <?php $menu_posts = array(); ?>
    
            <?php $the_query = new WP_Query( $args );?>
            <?php if ($the_query->have_posts()) : while ($the_query->have_posts()) : $the_query->the_post(); ?>
    
             <?php if($related_content = get('menu_parent_page')): ?>
                <?php $menu_posts[$related_content]['sub'][] = array('id' => $post->ID, 'title' => $post->post_title); ?>
             <?php else: ?>
                <?php $menu_posts[$post->ID]['parent'] = array('id' => $post->ID, 'title' => $post->post_title); ?>
             <?php endif; ?>
    
            <?php endwhile; else: ?>
    
            <?php endif; ?> 
            <?php wp_reset_query(); ?>
    
    
            <?php $postCount = 1; ?>
            <?php $totalPosts = sizeof($menu_posts); ?>
    
            <?php if($totalPosts > 0):?>    
            <?php foreach($menu_posts as $the_post): ?>
                <li <?php if($postCount == $totalPosts): ?> class="last<?php if($currentPost->ID == $the_post['parent']['id']): ?> active<?php endif; ?>"<?php elseif($currentPost->ID == $the_post['parent']['id']): ?> class="active"<?php endif; ?> ><a href="<?php echo get_pagelink($the_post['parent']['id']); ?>"><?php echo $the_post['parent']['title']; ?></a>
    
            <?php $totalSubPosts = sizeof($the_post['sub']); ?>
            <?php $subPostCount = 1; ?>
    
            <?php if($totalSubPosts > 0):?> 
            <ul>
                <?php foreach($the_post['sub'] as $sub_post): ?>
                        <li <?php if($subPostCount == $totalSubPosts): ?> class="last" <?php endif; ?>><a href="<?php echo get_pagelink($sub_post['id']); ?>"><?php echo $sub_post['title']; ?></a>
                <?php $subPostCount++; ?>
                <?php endforeach; ?>
    
    
            </ul>
            <?php endif; ?>
             </li>
            <?php $postCount++; ?>
    
            <?php endforeach; ?>
            <?php endif; ?>
    
        </ul>
    </div>
    
    <div id="page_content" class="grid_9">
    
        <!-- Start Loop -->
        <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
            <h1 class="page_header"><?php the_title(); ?></h1>
            <?php the_content(); ?>
                            <?php $logo_image = get_image('extra_logo_image', 1, 1, 0);  ?>
            <?php if($logo_image): ?>
            <img class="brand_logo_all" src="<?php echo $logo_image; ?>" alt="logo" />
            <?php endif; ?>
        <?php endwhile; else: ?>
            <p>An Error Occurred</p>
            <?php endif; ?> 
        <?php wp_reset_query(); ?>
        <!-- End Loop -->
    
        <?php $download_items = get_group('download'); ?>
        <?php if($download_items): foreach ($download_items as $item): ?>
        <div class="download">
            <a href="<?php echo $item['download_pdf'][1];?>">
                <div class="pdf">
                    <table>
                        <tr>
                            <td><?php echo $item['download_description'][1];?></td>
                        </tr>
                    </table>
                </div>
            </a>
        </div>
        <?php endforeach; endif;?>
    
    
        <?php $disable_call_to_action = get('extra_disable_call_to_action'); ?>
        <?php if(!$disable_call_to_action): ?>
        <?php include_once(TEMPLATEPATH . "/call_to_action.php"); ?>
        <?php endif; ?>
    
        </div><!-- #page_content -->
    
    
    
    </div><!-- #container --><?php get_footer();?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a jquery bug and I've been looking for hours now, I can't
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
Basically, what I'm trying to create is a page of div tags, each has
this is what i have right now Drawing an RSS feed into the php,
I have a French site that I want to parse, but am running into
I am currently running into a problem where an element is coming back from
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.