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 | |
/** | |
* @var string $ac_name | |
* @var string $ac_type | |
* @var string $routing_number | |
* @var string $ac_number | |
* @var string $bank_name | |
* @var string $bank_addr | |
* @var string $iban | |
* @var string $swift |
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
import { useState, Children, cloneElement } from '@wordpress/element'; | |
const Tabs = ( { tabs, children } ) => { | |
const [ activeTab, setActiveTab ] = useState( tabs[ 0 ]?.id || '' ); | |
return ( | |
<div> | |
{ /* Mobile Select Dropdown */ } | |
<div className="grid grid-cols-1 sm:hidden"> | |
<select |
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 My_Custom_My_Account_Endpoint { | |
/** | |
* Custom endpoint name. | |
* | |
* @var string | |
*/ | |
public static $endpoint = 'my-custom-endpoint'; |
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 | |
/* | |
Plugin Name: WP_Rewrite endpoints demo | |
Description: A plugin giving example usage of the WP_Rewrite endpoint API | |
Plugin URI: http://make.wordpress.org/plugins/2012/06/07/rewrite-endpoints-api/ | |
Author: Jon Cave | |
Author URI: http://joncave.co.uk/ | |
*/ | |
function makeplugins_endpoints_add_endpoint() { |
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
// Go to your desired website. Just paste the below whole script to browser console. Hit enter & see the magic!!! | |
(function () { | |
let currentUrl; | |
let currentUrlBase; | |
let filePath; | |
let fileName; | |
let fileUrl; | |
let scrapperPopup; |
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
======================================================================= | |
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | |
//////////////// Most Useful Terminal Command List \\\\\\\\\\\\\\\\ | |
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | |
======================================================================= | |
01. Current Working Directory: |
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
<!-- HTML Start --> | |
<div class="mssf-wrapper"> | |
<div data-mssf="1" class="mssf-step-single active"> | |
<h3 class="mssf-step-title">Are you age 40+ and carrying extra pounds you would like to eliminate | |
quickly and safely?</h3> | |
<div class="mssf-progress-bar"> | |
<span class="mssf-progress-counter" style="width: 10%;"></span> | |
</div> | |
<div class="mssf-form"> | |
<div class="mssf-radio-single"> |