Skip to content

Instantly share code, notes, and snippets.

View rilwis's full-sized avatar
🙂
Happy and peace when coding

Anh Tran rilwis

🙂
Happy and peace when coding
View GitHub Profile
@rilwis
rilwis / page-account.php
Last active September 14, 2019 07:35 — forked from kutoi94/page-account.php
Page My Account create with MB User Profile Plugin
<?php
/**
* Template Name: My Account
*/
if ( !is_user_logged_in() ) {
auth_redirect();
}
get_header();
?>
@rilwis
rilwis / meta-box.php
Last active July 27, 2019 07:22 — forked from kutoi94/Create Post Field in Meta Box Plugin
Create Post Field in Meta Box Plugin
<?php
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',
@rilwis
rilwis / template.php
Last active August 16, 2019 09:27 — forked from kutoi94/Create Related Posts with Meta Box Plugin
Create Related Posts with Meta Box Plugin
<?php
$field_id = 'related_posts';
$related_posts = rwmb_meta( $field_id );
if (isset($related_posts)) { ?>
<div id="relatedPosts" class="related-posts">
<h3 class="related-posts-headline"><em>You might also like</em></h3>
<div class="related-posts-items jp-related-posts-grid">
<?php foreach ($related_posts as $related_post) { ?>
<div class="related-post-item">
<a class="related-post-a" href="<?php echo get_the_permalink($related_post); ?>" title="<?php echo get_the_title($related_post); ?>" rel="nofollow">
@rilwis
rilwis / template.php
Created July 15, 2019 07:41 — forked from kutoi94/Meta Box Plugin
Use Meta Box to build the product detail page
<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">
@rilwis
rilwis / meta-box.php
Last active July 15, 2019 07:40 — forked from kutoi94/Meta Box Plugin
Create custom field in product details page by meta box plugin
<?php
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',
@rilwis
rilwis / flexible-content-field-by-meta-box.php
Last active June 9, 2019 00:11 — forked from kutoi94/flexible-by-meta-box
Create ACF Flexible Field with Meta Box Plugin
<?php
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',
'post_types' => 'page',
'fields' => array(
array (
'id' => 'sections',
'type' => 'group',
<?php
class acf_field_gravity_forms extends acf_field {
function __construct() {
$this->name = 'gravity_forms_field';
$this->label = __( 'Gravity Forms', 'acf' );
$this->category = __( "Relational", 'acf');
$this->defaults = array(
'multiple' => 0,
@rilwis
rilwis / FitWP.xml
Last active November 29, 2015 04:42 — forked from Rarst/deprecated.md
WordPress coding standards configuration for PhpStorm (goes into .WebIde10/config/codestyles)
<?xml version="1.0" encoding="UTF-8"?>
<code_scheme name="FitWP">
<option name="USE_SAME_INDENTS" value="true" />
<option name="IGNORE_SAME_INDENTS_FOR_LANGUAGES" value="true" />
<option name="OTHER_INDENT_OPTIONS">
<value>
<option name="INDENT_SIZE" value="4" />
<option name="CONTINUATION_INDENT_SIZE" value="4" />
<option name="TAB_SIZE" value="4" />
<option name="USE_TAB_CHARACTER" value="true" />