PHP Classes

File: admin/partials/service.php

Recommend this page to a friend!
  Classes of Eric Jumba   Yuri Wordpress Portfolio Plugin   admin/partials/service.php   Download  
File: admin/partials/service.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: 443 bytes
 

Contents

Class file image Download
<?php
wp_nonce_field
('yuri_lucas_save_postdata', 'service_meta_box_nonce');
$service = get_post_meta($post->ID, '_service_profession_meta_field', true);
?>
<label for="yuri_lucas_service_field">Service Icon (https://fontawesomeicons.com/bootstrap/icons/)</label>
    <input type="text" placeholder="bi-briefcase" name="yuri_lucas_service_field" id="yuri_lucas_service_field" class="postbox" value="<?php echo esc_attr($service) ?>">

<?php