php - Call for the wordpress text field -


i working in existing theme company. have special page template. template uses custom fields can fill in, displayed on page.

the general text field see when editing page not shown on page however. (it in dashboard environment.) page template looks like:

    <?php get_header() ?> <?php the_post() ?>  <!-- start content -->         <div id="content">              <div class="col left">                                   <?php dynamic_sidebar( 'left-widgets' ); ?>            </div>             <h1 class="mobiletitle" style="text-align:center;"><?php the_title() ?> </h1>             <div id="center">                   <div class="two-col">                  <?php                                 if( get_field('slider') )                 { ?>                      <div class="rslides_container">                         <ul class="rslides" id="slider1">                      <?php while( has_sub_field("slider") )                     {                              $variable = get_sub_field('image'); ?>                              <li><img src="<?php echo $variable;?>" alt="magic stables"></li>                          <?php } ?>                         </ul>                     </div>                      <?php } ?>                    <h1 class="maintitle" style="text-align:center;"><?php the_title() ?> </h1>                   <div class="horseinfo">                     <table>                     <?php if(get_field('naam_paard')) { ?>                          <tr>                             <td><?php if(icl_language_code=='nl') { ?>                             naam:                          <?php } else { ?>                          name:                          <?php } ?></td>                             <td><?php the_field('naam_paard'); ?></td>                                          </tr>                        <?php } ?>                                   <?php if(get_field('afstamming')) { ?>                          <tr>                                        <td><?php if(icl_language_code=='nl') { ?>                             afstamming:                          <?php } else { ?>                          breed:                          <?php } ?></td>                          <td><?php the_field('afstamming'); ?></td>                                              </tr>                     <?php } ?>                   <?php if(get_field('geslacht')) { ?>                            <tr>                         <td><?php if(icl_language_code=='nl') { ?>                             geslacht:                          <?php } else { ?>                          gender:                          <?php } ?></td>                          <td><?php the_field('geslacht'); ?></td>                                          </tr>                        <?php } ?>                                   <?php if(get_field('geboortejaar')) { ?>                            <tr>                    <td><?php if(icl_language_code=='nl') { ?>                             geboortejaar:                          <?php } else { ?>                          year of birth:                          <?php } ?></td>                          <td><?php the_field('geboortejaar'); ?></td>                                          </tr>                       <?php } ?>                  <?php if(get_field('geboortejaarkleur')) { ?>                        <tr>                      <td><?php if(icl_language_code=='nl') { ?>                             geboortejaarkleur:                          <?php } else { ?>                          birth color:                          <?php } ?></td>                          <td><?php the_field('geboortejaarkleur'); ?></td>                                               </tr>                      <?php } ?>                                 <?php if(get_field('stokmaat')) { ?>                        <tr>                     <td><?php if(icl_language_code=='nl') { ?>                             stokmaat:                          <?php } else { ?>                          height:                          <?php } ?></td>                          <td><?php the_field('stokmaat'); ?></td>                                          </tr>                       <?php } ?>                  <?php if(get_field('fokker_naam')) { ?>                        <tr>                     <td><?php if(icl_language_code=='nl') { ?>                             fokker:                          <?php } else { ?>                          breeder:                          <?php } ?></td>                          <td><?php the_field('fokker_naam'); ?></td>                                          </tr>                                        <?php } ?>                                  <?php if(get_field('fokker_plaats')) { ?>                          <tr>                         <td><?php if(icl_language_code=='nl') { ?>                             fokker plaats:                          <?php } else { ?>                          breeding place:                          <?php } ?></td>                          <td><?php the_field('fokker_plaats'); ?></td>                                               </tr>                    <?php } ?>                                    <?php if(get_field('overig')) { ?>                      <tr>                     <td><?php if(icl_language_code=='nl') { ?>                             overig:                          <?php } else { ?>                          other:                          <?php } ?></td>                             <td><?php the_field('overig'); ?></td>                                               </tr>                       <?php } ?>                    </table>                  </div>                  <br><br>                     <?php if(the_content()) { ?>                        <div class="one-col">                               <?php the_content() ?>                                    </div>                    <?php } ?>                                      <?php if(get_field('linkerkolom')) { ?>                          <div class="two-col-1">                      <?php the_field('linkerkolom'); ?>                     </div>                   <div class="two-col-2">                      <?php the_field('rechterkolom'); ?>                     </div>                  <?php } ?>                 </div>              </div>            <div class="col right">             <?php dynamic_sidebar( 'right-widgets' ); ?>                       </div>   <?php get_footer() ?> 

i see line make text custom form appear:

<?php the_field('fokker_naam'); ?> 

now, how normal field appear on page again? name of field?

i need use field because use editor, create font styles , such.

the main post content accessed via the_content() function:

<?php the_content(); ?> 

Comments

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -