This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "heading": "Excellent Plugin for Daily Use", | |
| "review": "This plugin saved me a lot of development time. Easy setup, clean interface, and works exactly as expected. Support was also very responsive.", | |
| "star": 5 | |
| }, | |
| { | |
| "heading": "Simple and Reliable", | |
| "review": "I installed it on a client website and everything worked smoothly right away. The documentation is clear and beginner friendly.", | |
| "star": 4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // In functions.php or a mu-plugin | |
| add_filter('doing_it_wrong_trigger_error', function($trigger, $function_name) { | |
| if ($function_name === '_load_textdomain_just_in_time') { | |
| return false; | |
| } | |
| return $trigger; | |
| }, 10, 2); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Codeboxr Company Profile | |
| More details online https://claude.ai/public/artifacts/4e232f7e-5bce-4b37-8d76-1d818a62809d | |
| ## Company Overview | |
| **Company Name:** Codeboxr | |
| **Website:** https://codeboxr.com | |
| **Founded:** 2011 | |
| **Type:** Software Development Company |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Deploy to WordPress.org | |
| on: | |
| push: | |
| tags: | |
| - "*" | |
| jobs: | |
| deploy: | |
| name: Deploy WordPress Plugin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $eventCategories = [ | |
| 'theme' => [ | |
| 'name' => 'Theme', | |
| 'items' => [ | |
| 'Technology & Innovation', | |
| 'Business & Startups', | |
| 'Design & Creativity', | |
| 'Science & Research', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class TableDateFieldAsArray { | |
| private $postId; // The post ID for context | |
| private $primaryKey; // Primary key for rows | |
| private $tableName; // Custom table name | |
| private $fieldName; // Field in the table to store serialized data | |
| private $data = []; // The actual data | |
| private $nextIndex = 1; | |
| private $usedKeys = []; // Track all used keys |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class CBXChangelogOptionAsArray { | |
| private $optionName; | |
| private $primaryKey; | |
| private $data = []; | |
| private $nextIndex = 1; | |
| private $usedKeys = []; | |
| public function __construct($optionName = 'custom_optionname', $primaryKey = 'id') { | |
| $this->primaryKey = $primaryKey; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class CBXChangelogMetaAsArray { | |
| private $postId; // The post ID to which meta data will be saved | |
| private $primaryKey; | |
| private $metakey; // Meta key for saving and loading data | |
| private $data = []; | |
| private $nextIndex = 1; | |
| private $usedKeys = []; // Track all used keys |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function(funcName, baseObj) { | |
| // The public function name defaults to window.docReady | |
| // but you can pass in your own object and own function name and those will be used | |
| // if you want to put them in a different namespace | |
| funcName = funcName || "docReady"; | |
| baseObj = baseObj || window; | |
| var readyList = []; | |
| var readyFired = false; | |
| var readyEventHandlersInstalled = false; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Contact form map start | |
| var map_id = $('#map_canvas'); | |
| if (map_id.length > 0) { | |
| var $lat = map_id.data('lat'), | |
| $lng = map_id.data('lng'), | |
| $zoom = map_id.data('zoom'), | |
| $maptitle = map_id.data('maptitle'), | |
| $mapaddress = map_id.data('mapaddress'), | |
| mymap = L.map('map_canvas').setView([$lat, $lng], $zoom); |
NewerOlder