I hereby claim:
- I am kutoi94 on github.
- I am kutoi94 (https://keybase.io/kutoi94) on keybase.
- I have a public key ASD6MAs61YviKPWdwfqqYCKIudkQUgX6QH0Ozyk1CTJsSAo
To claim this, I am signing this object:
| <?php | |
| /* | |
| * Template Name: My Account | |
| */ | |
| ?> | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"> | |
| <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script> | |
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script> | |
| <?php |
| <?php | |
| /* | |
| * Template Name: Publish Post | |
| */ | |
| ?> | |
| <?php | |
| if ( !is_user_logged_in() ) { | |
| auth_redirect(); |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| /* | |
| * Template Name: My Account | |
| */ | |
| ?> | |
| <?php | |
| if ( !is_user_logged_in() ) { | |
| auth_redirect(); |
| add_filter( 'rwmb_meta_boxes', 'your_prefix_register_meta_boxes' ); | |
| function your_prefix_register_meta_boxes( $meta_boxes ) { | |
| $meta_boxes[] = array ( | |
| 'title' => 'Car Rental', | |
| 'id' => 'car-rental', | |
| 'post_types' => array( | |
| 0 => 'car-rental', | |
| ), | |
| 'context' => 'normal', | |
| 'priority' => 'high', |
| <div class="page-wrapper"> | |
| <div class="product-gallery--columns-4 images" data-columns="4"> | |
| <figure class="product-gallery__wrapper"> | |
| <a href="<?php echo get_the_post_thumbnail('full'); ?>"> | |
| <img src="<?php echo get_the_post_thumbnail('full'); ?>" alt="<?php the_title(); ?>"> | |
| </a> | |
| <div class="thumbnails owl-carousel owl-loaded owl-drag"> | |
| <div class="owl-stage-outer"> | |
| <div class="owl-stage"> | |
| <div class="owl-item"> |
| add_filter( 'rwmb_meta_boxes', 'your_prefix_register_meta_boxes' ); | |
| function your_prefix_register_meta_boxes( $meta_boxes ) { | |
| $meta_boxes[] = array ( | |
| 'title' => 'Related Post', | |
| 'id' => 'related-post', | |
| 'post_types' => array( | |
| 0 => 'post', | |
| ), | |
| 'context' => 'normal', | |
| 'priority' => 'high', |
| add_filter( 'rwmb_meta_boxes', 'your_prefix_register_meta_boxes' ); | |
| function your_prefix_register_meta_boxes( $meta_boxes ) { | |
| $meta_boxes[] = array ( | |
| 'title' => 'Flexible Field Example', | |
| 'id' => 'flexible-field-example', | |
| 'post_types' => array( | |
| 0 => 'page', | |
| ), | |
| 'context' => 'normal', | |
| 'priority' => 'high', |
| <main id="Main"> | |
| <div class="page-wrapper"> | |
| <div class="container"> | |
| <div class="row"> | |
| <div id="menuBarleft" class="col-lg-3 col-sm-12"> | |
| <div id="navbarNav" class="nav nav-tabs"> | |
| <div id="v-pills-tab" class="nav flex-column nav-pills menu-left" role="tablist" aria-orientation="vertical"> | |
| <?php $group_values = rwmb_meta( 'faq_tab' ); | |
| $count = 0; | |
| if ( ! empty( $group_values ) ) { |