/** * Plugin Name: WP Yahoo RSS (With SEO Delay & Security Hardening) * Plugin URI: https://gen.caca01.com/ * Description: Wordpress Yahoo RSS feed tweaked for only tyenews.com (Includes SEO Time Delay, Path locking, and Performance fix) * Version: 1.0.9 * Author: Carter Wu (Final Patch: Route locking + Query Scoping + UTC Time) + Safe Cache Patch * Author URI: https://gen.caca01.com/ * License: GPL-2.0+ * License URI: http://www.gnu.org/licenses/gpl-2.0.txt * Text Domain: wp-yahoo-rss */ if (!defined('ABSPATH')) exit; const YH_DELAY_MINUTES = 120; const YH_QUERY_VAR = 'yh_feed_stats'; function yh_register_rewrite_rules() { add_rewrite_rule('^yahoo-rss(?:/([^/]+))?/?$', 'index.php?' . YH_QUERY_VAR . '=true&type=$matches[1]', 'top'); } add_filter('query_vars', 'yh_feed_query_vars'); function yh_feed_query_vars($query_vars) { $query_vars[] = YH_QUERY_VAR; $query_vars[] = 'type'; return $query_vars; } register_activation_hook(__FILE__, 'yh_feed_activate'); function yh_feed_activate() { yh_register_rewrite_rules(); flush_rewrite_rules(false); } register_deactivation_hook(__FILE__, 'yh_feed_deactivate'); function yh_feed_deactivate() { flush_rewrite_rules(false); } add_action('init', 'yh_feed_init'); function yh_feed_init() { yh_register_rewrite_rules(); } add_action('parse_request', 'yh_feed_parse_request'); function yh_feed_parse_request(&$wp) { if (!array_key_exists(YH_QUERY_VAR, $wp->query_vars)) { return; } $is_yahoo_path = false; if (!empty($wp->request) && preg_match('#^yahoo-rss(?:/|$)#', $wp->request)) { $is_yahoo_path = true; } if ($is_yahoo_path) { if (!defined('IS_YAHOO_FEED')) { define('IS_YAHOO_FEED', true); } $linkify_path = dirname(__FILE__) . '/data/linkify.php'; if (file_exists($linkify_path)) { require_once $linkify_path; } } } add_action('template_redirect', 'yh_feed_render_output'); function yh_feed_render_output() { if (!defined('IS_YAHOO_FEED') || IS_YAHOO_FEED !== true) { return; } if (!defined('DONOTCACHEPAGE')) define('DONOTCACHEPAGE', true); if (!defined('DONOTCACHEOBJECT')) define('DONOTCACHEOBJECT', true); if (!defined('DONOTCACHEDB')) define('DONOTCACHEDB', true); // ✅ 改這裡:用 query var 取 type(rewrite 進來就是 query var) $type = get_query_var('type'); $type = is_string($type) ? sanitize_key($type) : ''; $cache_key = 'yh_yahoo_feed_xml_' . md5($type); $force = (isset($_GET['nocache']) && $_GET['nocache'] !== ''); if (!$force) { $cached = get_transient($cache_key); if (is_string($cached) && $cached !== '') { header('Content-Type: text/xml; charset=utf-8'); echo $cached; exit(); } } $list_path = dirname(__FILE__) . '/data/list.php'; if (!file_exists($list_path)) { status_header(404); header('Content-Type: text/plain; charset=UTF-8'); echo 'Error: RSS template file not found.'; exit(); } ob_start(); try { include $list_path; $xml = ob_get_clean(); } catch (Throwable $e) { if (ob_get_level()) ob_end_clean(); status_header(500); header('Content-Type: text/plain; charset=UTF-8'); echo 'Feed error: ' . $e->getMessage(); exit(); } if (is_string($xml) && $xml !== '') { set_transient($cache_key, $xml, 60); } header('Content-Type: text/xml; charset=utf-8'); echo $xml; exit(); } function yh_filter_cats($categories) { if (empty($categories) || !is_array($categories)) return ''; foreach ($categories as $category) { if (!is_object($category)) continue; $name = isset($category->name) ? trim((string)$category->name) : ''; $slug = isset($category->slug) ? strtolower(trim((string)$category->slug)) : ''; if ( $name === 'YAHOO' || $name === '不送YAHOO' || $slug === 'nosend-yahoo' || $slug === '不上yahoo' || strpos($slug, 'yahoo') !== false ) { return ''; } } return isset($categories[0]->name) ? esc_html($categories[0]->name) : ''; } function yh_cat_yahoo($category) { return $category; } add_action('pre_get_posts', 'yh_exclude_nosend_yahoo_from_yahoo_rss'); function yh_exclude_nosend_yahoo_from_yahoo_rss($query) { if (is_admin() || !defined('IS_YAHOO_FEED') || IS_YAHOO_FEED !== true) { return; } $pt = $query->get('post_type'); if (!empty($pt) && $pt !== 'post') { return; } $query->set('post_type', 'post'); static $exclude_term_ids = null; if ($exclude_term_ids === null) { $exclude_term_ids = array(); $term_slugs = array('nosend-yahoo', '不上yahoo'); foreach ($term_slugs as $slug) { $term = get_category_by_slug($slug); if ($term && !is_wp_error($term)) { $exclude_term_ids[] = (int) $term->term_id; } } } if (!empty($exclude_term_ids)) { $tax_query = (array) $query->get('tax_query'); $tax_query[] = array( 'taxonomy' => 'category', 'field' => 'term_id', 'terms' => $exclude_term_ids, 'operator' => 'NOT IN', ); $query->set('tax_query', $tax_query); } $delay_minutes = (int) YH_DELAY_MINUTES; if ($delay_minutes > 0) { $cutoff_ts = (int) current_time('timestamp', true) - ($delay_minutes * 60); $cutoff_time = gmdate('Y-m-d H:i:s', $cutoff_ts); $date_query = (array) $query->get('date_query'); $date_query[] = array( 'column' => 'post_date_gmt', 'before' => $cutoff_time, ); $query->set('date_query', $date_query); } $query->set('ignore_sticky_posts', true); $query->set('no_found_rows', true); $query->set('cache_results', false); $query->set('update_post_meta_cache', false); $query->set('update_post_term_cache', true); } 桃園青年局赴韓交流 借鏡地方創生經驗迎接2026台灣設計展
2026年03月03日 星期二

桃園青年局赴韓交流 借鏡地方創生經驗迎接2026台灣設計展

  • 「ISDW 2025國際學生設計研習營」頒獎典禮8月22日於南韓首爾舉行。
  • 「ISDW 2025國際學生設計研習營」頒獎典禮8月22日於南韓首爾舉行,來自台日韓超過60位設計系學生與會,當中包含4名來自桃園元智大學及。
  • 侯佳齡也赴東大門設計廣場取經,拜會車康熙。
Q:這篇在講什麼?
A:「ISDW 2025國際學生設計研習營」頒獎典禮8月22日於南韓首爾舉行。
Q:重點是什麼?
A:「ISDW 2025國際學生設計研習營」頒獎典禮8月22日於南韓首爾舉行,來自台日韓超過60位設計系學生與會,當中包含4名來自桃園元智大學及。
5665 4
「ISDW 2025國際學生設計研習營」頒獎典禮8月22日於南韓首爾舉行。圖:青年局提供

「ISDW 2025國際學生設計研習營」頒獎典禮8月22日於南韓首爾舉行,來自台日韓超過60位設計系學生與會,當中包含4名來自桃園元智大學及銘傳大學的學生,桃園市青年事務局長侯佳齡也出席活動,並於會中宣布,桃園將成為明年ISDW國際學生設計研習營主辦城市。

5665 3
侯佳齡也赴東大門設計廣場取經,拜會車康熙。圖:青年局提供

ISDW 2025國際學生設計研習營由KIDA韓國工業設計協會主辦、TIDA中華民國工業設計協會及JIDA日本工業設計協會協辦,此活動為台日韓設計相關系所學子搭建平台,期盼透過交流,拓展設計力與創造力。桃園市除將於明年主辦研習營活動外,亦將承辦 2026台灣設計展。侯佳齡於活動現場與學子熱烈交流,傾聽大家對研習營的建議與想法。

未來,市府規劃將桃園在地景點、老城區商圈活化、文化地景及環境永續等議題納入設計創作方向,並積極結合在地企業力量,邀請青年以設計手法詮釋桃園特色。屆時,相關成果將於 「2026台灣設計展在桃園」國際青年展區 展出,展現桃園融合創意與在地文化的能量。

侯佳齡此行也拜訪金哲熙,針對青年政策之推動交換意見。李昌勳及主務官白景珍則向侯佳齡介紹首爾市政廳推動「Next Local」地方創生專案之經驗,透過三階段篩選及輔導地方創生團隊,讓地方創生團隊透過田野調查,下鄉與在地連結,最後再回到首爾市,造就出許多成功案例;侯佳齡也赴東大門設計廣場取經,拜會車康熙,了解DDP由英國著名女性建築師Zaha Hadid設計迄今已11年,累計訪客已超過一億人次,每年舉辦指標性的「首爾之光」光雕秀、並於2023年與2025年獲得紅點與iF設計獎、與國際知名計師合作辦理策展及舉辦大型展會等。首爾市城東區區廳長鄭愿伍也安排參觀城東區智慧交通控制中心和AI未來技術體驗中心。

侯佳齡也邀請鄭愿伍、車康熙和金哲熙參加明年在桃園2026台灣設計展,她表示,桃園市政府從多元管道培育青年設計人才,像是成立桃園設計庫、舉辦桃園設計獎、各式主題展及設計學群聯展、國際設計交流與觀摩學習、青年設計展暨國際設計論壇等。此次交流,首爾市諸多經驗值得桃園借鏡,未來將持續推動國際交流與合作,讓青年從台灣邁向國際。

spot_imgspot_imgspot_img

相關新聞

即時新聞

頭條新聞

熱門新聞

會員註冊
註冊讀者會員|即時掌握在地新聞,專屬好康不漏接
密碼至少8碼

已有帳號?