Site icon Hip-Hop Website Design and Development

A number of editable content material on web page


EDIT: I’ve discovered that by utilizing Superior Customized Fields I can edit a number of fields on a web page. Why WP does not have this characteristic by default I am going to by no means know.

That is the form of means I used to be searching for that PerchCMS has by default.

Thanks on your solutions.


I am new to writing web sites utilizing WordPress as a CMS, and up to now I’ve used a CMS referred to as PerchCMS which permits me so as to add additional a number of sections by utilizing the php tag of:

<?php perch_content('InformationTitle');?>
<?php perch_content('Data');?>
<?php perch_content('AboutTitle');?>
<?php perch_content('AboutContent');?>

With WordPress I actually do not perceive the way to add a number of sections on this means, I trawled the Web for solutions, however there look like no solutions anyplace else.

A part of my code is as follows:

<?php if (have_posts()) : ?>
    <?php whereas (have_posts()) : the_post(); ?>


        <img src="<?php bloginfo('template_directory'); ?>/belongings/img/emblem.png" class="fg3 emblem" alt="Brand" />


          <div id='providers'>
            <p>
              <?php the_content('providers'); ?>
            </p>
          </div>

           <div id='about'>
            <p>
              <?php the_content('about'); ?>
            </p>
          </div>

With this technique, all of the content material I write will get repeated.

What am I doing mistaken? I perceive that the loop is there to loop via the posts on the web page, and I’ve seen point out of plugins such to realize this, however absolutely WordPress ought to provide this by default? There are numerous many websites which have completely different sections that should be edited independently.

Any assistance is tremendously appreciated.