AI 與程式開發
共 117 篇文章
-
WordPress Standard Add Shortcode Function
function do_imnobby_standard_wp_shortcode($attr){ $tmphtml = ''; $tmphtml .= $attr["showtext"]; …
閱讀全文 → -
PHP Function for Minifying HTML
function imnobby_minify_html($code) { $search = array( // Remove whitespaces after tags '/\>[^\S ]…
閱讀全文 → -
WordPress Filter: Append to Content
function imnobby_append_to_content( $content ) { $tmphtml = ""; if ( get_field('keywords') ){ $tmp…
閱讀全文 → -
Bootstrap 5 Blank Starter Template V1.0
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="v…
閱讀全文 → -
WordPress Filter: Force Update Post Author ID After Updating Post
// functions.php function imnobby_change_author_after_post ( $data ) { if ( !wp_is_post_revision( $dat…
閱讀全文 → -
Apache httpd.conf File Location for CentOS
/etc/httpd/conf/httpd.conf…
閱讀全文 → -
YouTube Live Chat Screen Popup For Iframe Display
https://www.youtube.com/live_chat?is_popout=1&v=<youtube_video_id>…
閱讀全文 → -
VIM Commands
// Delete All Lines :1,$d // Move Cursor To File End Shift + G…
閱讀全文 → -
PHP Get Unique Values from Lines
<?php $input_lines = "111 222 333 444 111 222"; $input_array = explode("\n", $input_lines); /…
閱讀全文 → -
WordPress Post Category Filter in Home Page
function imnobby_home_page_post_filter($query){ if($query->is_home() && $query->is_main_query(…
閱讀全文 → -
HTTPS to HTTP in .htaccess
RewriteEngine On RewriteCond %{HTTPS} on RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]&hellip…
閱讀全文 → -
於 Ubuntu 設定 Let’s Encrypt 免費 SSL 網站證書
當我們需要於網站啟用 HTTPS 安全連線時,我們先要向數位憑證認證機構 (Certificate Authority, CA) 申請憑證 (Certificate)。大部份 SSL 網站證書都是收費的,也有很多不同的選…
閱讀全文 → -
【Google Analytics 分析】如何把自己的流量過濾及排除 (一)
方法一: 使用「不透露資訊瀏覽器外掛程式」 下載 Google Analytics (分析) 不透露資訊瀏覽器外掛程式,使用後你的的訪客行為將會不被 Google Analytics (分析) JavaScript (g…
閱讀全文 → -
【WordPress 外掛】Content Blocks – 將內容當成積木
Content Blocks 內容積木 在博客或網頁製作時,我們經常要把同一個內容放在不同的頁面或文章。例如我們會想在某類別文章的底部加入廣告連結,或者是一些相關文章的連結。但當我們需要在「不同的頁面」更改這些「相同的內…
閱讀全文 → -
【WordPress 外掛】圖片壓縮及最佳化
將網頁中的圖片壓縮及最佳化 ( Image Compression & Optimization ) 能節省用戶下載網站資源的速度,也因此能提升網站的用戶體驗。我們將會抽出選幾個熱門「WordPress 外掛」作…
閱讀全文 →