Skip to content

Instantly share code, notes, and snippets.

View slingshotdesign's full-sized avatar

Slingshot Design slingshotdesign

View GitHub Profile
@akshuvo
akshuvo / WordPress Repeater MetaBox.php
Last active June 12, 2024 15:22
Creating a “repeater meta-box” without a Plugin in WordPress
<?php
add_action('admin_init', 'gpm_add_meta_boxes', 2);
function gpm_add_meta_boxes() {
add_meta_box( 'gpminvoice-group', 'Custom Repeatable', 'Repeatable_meta_box_display', 'page', 'normal', 'default');
}
function Repeatable_meta_box_display() {
global $post;
$gpminvoice_group = get_post_meta($post->ID, 'customdata_group', true);
@dbranes
dbranes / wpq-search.php
Last active February 29, 2020 07:24
WooCommerce - search by product dimensions
<?php
/**
* Plugin Name: WooCommerce - Search by product dimensions, pa_colour and SKU
* Description: Shortcodes [wpq_search] and [wpq_results] to search products by length, height, width, attribute colour taxonomy and SKU
* Plugin URI: http://www.wpquestions.com/question/showChronoLoggedIn/id/9732
* Author: dbranes
* Version: 0.2.1
*/
/**