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 | |
function create_fake_post($content, $title = 'Slider Revolution') { | |
$post = new stdClass(); | |
$post->ID = -1; | |
$post->post_author = get_current_user_id(); | |
$post->post_date = current_time('mysql'); | |
$post->post_date_gmt = current_time('mysql', 1); | |
$post->post_title = $title; | |
$post->post_content = $content; | |
$post->post_status = 'publish'; |
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 | |
//修正 wp-content/plugins/js_composer/include/classes/core/class-vc-post-admin.php 中 saveAjaxFe 方法的權限補強,補強在方法第一行 | |
$user = wp_get_current_user(); | |
// 僅限制「編輯」、「管理員」與「商店管理員」等級開放編輯,若有其他角色,自行補充 | |
$allowed_roles = array('editor', 'administrator', 'shop_manager'); | |
if (empty(array_intersect($allowed_roles, $user->roles))) { | |
wp_send_json_error(); | |
exit; | |
} |
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 | |
/** | |
* 使用 Instagram (Facebook) API 取得用戶圖文的方法,翻譯自原文: https://www.gsarigiannidis.gr/instagram-feed-api-after-june-2020/ | |
* | |
* @param $token // 存取權杖 | |
* @param $user // 用戶編號,查詢工具: https://developers.facebook.com/tools/debug/accesstoken/ | |
* @param int $limit // 查詢圖文筆數(不建議設定太多). | |
* @param string $fields // 其他欄位參考: https://developers.facebook.com/docs/instagram-basic-display-api/reference/media | |
* @param array $restrict // 取得媒體類型: IMAGE, VIDEO, CAROUSEL_ALBUM | |
* |
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 | |
include 'wp-load.php'; | |
set_time_limit(0); | |
ini_set('memory_limit', '256M'); | |
add_action('after_setup_theme', function () { | |
add_filter('intermediate_image_sizes', '__return_empty_array'); | |
add_filter('wp_get_attachment_image_src', function ($image, $attachment_id, $size, $icon) { | |
// get a thumbnail or intermediate image if there is one | |
$image = image_downsize($attachment_id, 'full'); |
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
[Definition] | |
failregex = ^<HOST>.*POST.*wp-admin/.*HTTP\.*\" (500|503|400|403|404).* | |
^<HOST>.*POST.*\" (500|503|400|403|404).* | |
^<HOST>.*POST.*wp-content/.*(php|js|jpg|png).* | |
^<HOST>.*POST.*wp-include/.*(php|js|jpg|png).* |
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 | |
require_once '../vendor/autoload.php'; | |
define('TOKEN_FILENAME', '/PATH/TO/YOUR/TOKENFILE.dat', true); | |
$client = new Google_Client(); | |
$client->addScope('https://www.googleapis.com/auth/adsense.readonly'); | |
$client->setAccessType('offline'); | |
$client->setApprovalPrompt('force'); | |
$client->setAuthConfig('/PATH/TO/YOUR/client_secrets.json'); | |
$auth = ""; |
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(){ | |
function initXMLhttp() { | |
var xmlhttp; | |
if (window.XMLHttpRequest) { | |
xmlhttp = new XMLHttpRequest(); | |
} else { | |
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); |
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 | |
function mxp_line_notify($msg) { | |
if ($msg == "") { | |
return; | |
} | |
$body = array( | |
'message' => PHP_EOL . $msg, //先斷行,避免跟 Bot 稱呼黏在一起 | |
); | |
// 授權方式 |
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 | |
$link = '下載連結'; | |
$file_name = '檔案名稱'; | |
$upload_file = array(); | |
$options = array('timeout' => 300); | |
$response = wp_safe_remote_get($link, $options); | |
$data = wp_remote_retrieve_body($response); | |
$upload_file[] = wp_upload_bits($file_name, null, $data); | |
$pid = '該篇文章ID'; | |
for ($i = 0; $i < count($upload_file); ++$i) { |
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 | |
//此行以下,放置於 wp-content/themes/twentynineteen/functions.php 最末行 (注意:建議使用子主題,此操作會在主題更新後被覆蓋) | |
function mxp_custom_excerpt_length($length) { | |
return 100; | |
} | |
add_filter('excerpt_length', 'mxp_custom_excerpt_length', 999); |