PHP Classes

File: admin/partials/testimonial.php

Recommend this page to a friend!
  Classes of Eric Jumba   Yuri Wordpress Portfolio Plugin   admin/partials/testimonial.php   Download  
File: admin/partials/testimonial.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Yuri Wordpress Portfolio Plugin
WordPress custom post type to show portfolio pages
Author: By
Last change:
Date: 6 months ago
Size: 460 bytes
 

Contents

Class file image Download
<?php
wp_nonce_field
('yuri_lucas_save_postdata', 'testimonial_meta_box_nonce');
   
$testimonial_profession = get_post_meta($post->ID, '_testimonial_profession_meta_field', true);
   
?>
<label for="yuri_lucas_testimonial_profession_field">Profession / Job Title</label>
        <input type="text" name="yuri_lucas_testimonial_profession_field" id="yuri_lucas_testimonial_profession_field" class="postbox" value="<?php echo esc_attr($testimonial_profession) ?>">

    <?php