Skip to content

Instantly share code, notes, and snippets.

View estevan-ulian's full-sized avatar
🏠
Working from home

Estevan Ulian estevan-ulian

🏠
Working from home
View GitHub Profile
@estevan-ulian
estevan-ulian / README.md
Created July 2, 2022 18:39 — forked from luizomf/README.md
VSCode settings.json - keybindings.json - recomendations - extensions.json. Just to backup (visual studio code)
@estevan-ulian
estevan-ulian / jet-engine-cct-api.php
Created February 28, 2024 17:16 — forked from MjHead/jet-engine-cct-api.php
API to interact with JetEngine CCT from directly PHP code
<?php
/**
* JetEngine CCT-related API functions to use in theme or plugin
*
* Theme usage - include get_theme_file_path( 'jet-engine-cct-api.php' );
* Plugin usage - include PLUGIN_PATH . 'path-to-file-inside-plugin/jet-engine-cct-api.php';
*/
/**
@estevan-ulian
estevan-ulian / rel-get-items-by-relation.php
Last active April 24, 2024 17:12 — forked from Crocoblock/rel-get-items-by-relation.php
JetEngine Related Items by Sibling Relation Macro
<?php
add_action( 'jet-engine/register-macros', function(){
class Related_Items_By_Sibling_Relation extends \Jet_Engine_Base_Macros {
public function macros_tag() {
return 'rel_get_items_by_relation';
}