This file contains 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 | |
// Filters the front-end output of the query block | |
function prefix_random_posts_block_variation( $pre_render, $block ) { | |
// Verify it's the block that should be modified using the namespace | |
if ( !empty($block['attrs']['namespace']) && 'namespace/random-ordered-posts' === $block[ 'attrs' ][ 'namespace' ] ) { | |
add_filter( 'query_loop_block_query_vars', function( $query ) { | |
$post = get_queried_object(); |
This file contains 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: My Theme - Enqueue Adobe Fonts | |
Plugin URI: https://wordpress.org | |
Description: Must-use plugin for custom actions and filters to run for a site | |
Version: 0.1 | |
Author: Ruben Madila | |
Author URI: https://rubenmadila.com | |
*/ |
This file contains 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: PD Blocks — Example OOP with attributes | |
* Description: Single-file OOP PHP-rendered WordPress blocks with 5 example blocks. | |
* Author: Paul David Clark | |
* Author URI: https://pd.cm | |
* Plugin URI: https://pd.cm/oop-blocks | |
* Version: 30 | |
* | |
* @package pd |
This file contains 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
var sheetID = 'xxx'//แก้จุดที่1 | |
function doGet(e) { | |
if (!e.parameter.page || e.parameter['page']=='index') { | |
var htmlOutput = HtmlService.createTemplateFromFile('index') | |
htmlOutput.message = ''; | |
return htmlOutput.evaluate() | |
.setTitle("web app") | |
.addMetaTag('viewport', 'width=device-width , initial-scale=1') | |
.setXFrameOptionsMode(HtmlService.XFrameOptionsMode.ALLOWALL) |
This file contains 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: [Forminator] - Submission id in response message | |
* Plugin URI: https://premium.wpmudev.org/ | |
* Description: This snippet allows to use the submission id in response messages. The following macro can be used in the content `{submission_id}` | |
* Author: Panos Lyrakis, Amit Sonkhiya @ WPMUDEV | |
* Author URI: https://premium.wpmudev.org/ | |
* Task: SLS-2683 | |
* License: GPLv2 or later | |
*/ |
This file contains 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
//Cart | |
//https://github.com/woocommerce/woocommerce/blob/d30c54ef846b086b96278375b71f7c379d9aa8e8/assets/js/frontend/cart.js | |
$( document.body ).on( 'update_checkout', function(){}); | |
$( document.body ).on( 'updated_cart_totals', function(){}); | |
$( document.body ).on( 'updated_wc_div', function(){}); | |
$( document.body ).on( 'updated_shipping_method', function(){}); | |
$( document.body ).on( 'applied_coupon', function(){}); | |
$( document.body ).on( 'removed_coupon', function(){}); | |
// Checkout |
This file contains 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
/** | |
* jd-export.jsx | |
* ------------- | |
* Illustrator script—Exports CMYK, RGB, and Hex values for all the color | |
* swatches in a document. CMYK to RGB conversion using Adobe’s default US | |
* Web Coated SWOP2 to sRGB. | |
* | |
* | |
* LICENSE | |
* ------- |
This file contains 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
fetch(ajax_url, { | |
method: 'POST', | |
credentials: 'same-origin', | |
headers: new Headers({'Content-Type': 'application/x-www-form-urlencoded'}), | |
body: 'action=zget_profile_user' | |
}) | |
.then((resp) => resp.json()) | |
.then(function(data) { | |
if(data.status == "success"){ | |
_this.setState({loaded:true,user:data.user}); |
This file contains 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
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<title>Semantic UI CDN</title> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.9/semantic.min.css"/> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.9/semantic.min.js"></script> | |
</head> | |
<body> |
This file contains 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 fadeOut(el){ | |
el.style.opacity = 1; | |
(function fade() { | |
if ((el.style.opacity -= .1) < 0) { | |
el.style.display = "none"; | |
} else { | |
requestAnimationFrame(fade); | |
} | |
})(); |
NewerOlder