Skip to content

Instantly share code, notes, and snippets.

View turtlepod's full-sized avatar
🎧
Working from home

David Chandra Purnama turtlepod

🎧
Working from home
View GitHub Profile
@turtlepod
turtlepod / add-wpcli.sh
Created December 30, 2021 23:00 — forked from ladislavsulc/add-wpcli.sh
Add WP CLI to Laragon
cd C:\laragon\usr\bin && curl -L -O https://raw.github.com/wp-cli/builds/gh-pages/phar/wp-cli.phar && echo @ECHO OFF > wp.bat && echo php "%~dp0wp-cli.phar" %* >> wp.bat
@turtlepod
turtlepod / composer.json
Created September 26, 2020 10:03
Contoh Composer dari tutorial youtube.
{
"name": "test-plugin-wpcs",
"description": "Plugin with WPCS",
"authors": [
{
"name": "Author",
"email": "david@shellcreeper.com"
}
],
"require": {
<?php
add_action( 'init', function() {
// Add field:
add_action( 'add_meta_boxes', function() {
add_meta_box(
'my_meta_box',
'My Meta Box',
function( $post ) {
wp_nonce_field( __FILE__, '_my_data_nonce' );
?>
@echo off
set /p domain="Enter Domain: "
set OPENSSL_CONF=../conf/openssl.cnf
if not exist .\%domain% mkdir .\%domain%
..\bin\openssl req -config cert.conf -new -sha256 -newkey rsa:2048 -nodes -keyout %domain%\server.key -x509 -days 3650 -out %domain%\server.crt
echo.
echo -----
[ req ]
default_bits = 2048
default_keyfile = server-key.pem
distinguished_name = subject
req_extensions = req_ext
x509_extensions = x509_ext
string_mask = utf8only
[ subject ]
@turtlepod
turtlepod / functions.php
Last active August 18, 2019 11:01
Listify Snippet: Very Raw Idea (consider this as proof of concept) In How to Create Custom Locate Me Button To Get Only City Name.
<?php
add_action( 'wp_footer', function() {
?>
<script>
jQuery( document ).ready( function($) {
// Add custom locate me button.
$( '.search_location' ).append( '<i class="locate-me-too"></i>' );
@turtlepod
turtlepod / some.php
Created November 14, 2017 08:28
Listify FacetWP: Listings Template Query
<?php
return array(
'post_type' => 'job_listing',
'orderby' => array( 'menu_order' => 'ASC', 'date' => 'DESC' ),
'order' => 'asc',
'post_status' => 'publish'
);
@turtlepod
turtlepod / functions.php
Last active November 14, 2017 08:16
Listify Snippet: Change Location Field to Address
<?php
/**
* Change The Location Fields to "Address"
*
* @link https://gist.github.com/turtlepod/e05053729577fdbf2daa604bb32271b7
*/
add_action( 'init', function() {
@turtlepod
turtlepod / functions.php
Created November 13, 2017 14:45
Listify Snippet: Remove Location Facets
<?php
// Filter registered facets.
add_filter( 'facetwp_facets', function( $facets ) {
/**
* Loop each facets.
* Listify facets are "keyword", "location", and "category"
*/
foreach ( $facets as $index => $facet ) {
@turtlepod
turtlepod / functions.php
Last active December 30, 2018 12:23
Listify Snippet: Add Listing Category in Listing Card
<?php
/**
* Add Category List To Listing Data.
*
* @link https://gist.github.com/turtlepod/0642d19439de6b96da06342619ed705a
*/
add_filter( 'listify_get_listing_to_array', function( $data, $listing ) {