/** * ========================================================== * GET OR CREATE WORDPRESS CATEGORY * ========================================================== * * Bangladesh Diplomat special-news rule: * * INTERNATIONAL -> special-news * CRIME -> special-news * POLITICS -> special-news * * Every post still gets: * - Original category * - সর্বশেষ * * Other sites are NOT affected. * ========================================================== */ function getWordPressCategoryIds_( categoryName, config ) { const names = []; const ownCategory = String( categoryName || "" ).trim(); /** * -------------------------------------------------------- * ORIGINAL CATEGORY * -------------------------------------------------------- */ if (ownCategory) { names.push( ownCategory ); } /** * -------------------------------------------------------- * EVERY NEWS -> সর্বশেষ * -------------------------------------------------------- */ names.push( "সর্বশেষ" ); /** * -------------------------------------------------------- * SPECIAL NEWS / HOMEPAGE SLIDER * -------------------------------------------------------- * * Only Bangladesh Diplomat. */ if ( wpShouldAddSpecialNews_( ownCategory, config ) ) { names.push( "special-news" ); Logger.log( "SPECIAL NEWS ROUTE : YES | CATEGORY=" + ownCategory ); } else { Logger.log( "SPECIAL NEWS ROUTE : NO | CATEGORY=" + ownCategory ); } /** * -------------------------------------------------------- * REMOVE DUPLICATE CATEGORY NAMES * -------------------------------------------------------- */ const uniqueNames = []; names.forEach( function(name) { const normalized = String( name || "" ) .trim() .toLowerCase(); if (!normalized) { return; } const alreadyExists = uniqueNames.some( function(item) { return ( String( item || "" ) .trim() .toLowerCase() === normalized ); } ); if (!alreadyExists) { uniqueNames.push( String( name ).trim() ); } } ); /** * -------------------------------------------------------- * RESOLVE WORDPRESS CATEGORY IDS * -------------------------------------------------------- */ const ids = []; uniqueNames.forEach( function(name) { const id = getOrCreateWordPressCategory_( name, config ); if ( id && Number(id) > 0 && ids.indexOf( Number(id) ) === -1 ) { ids.push( Number(id) ); } } ); Logger.log( "WORDPRESS CATEGORY NAMES : " + JSON.stringify( uniqueNames ) ); Logger.log( "WORDPRESS CATEGORY IDS : " + JSON.stringify( ids ) ); return ids; } /** * ========================================================== * SPECIAL NEWS CATEGORY RULE * ========================================================== * * TRUE only when: * - Site = Bangladesh Diplomat * - Category belongs to: * 1. International * 2. Crime * 3. Politics * ========================================================== */ function wpShouldAddSpecialNews_( categoryName, config ) { const siteUrl = String( config && config.site_url ? config.site_url : "" ) .trim() .toLowerCase(); /** * Do not affect SITE002 / SITE003 * or any other WordPress site. */ if ( siteUrl.indexOf( "bangladeshdiplomat.com" ) === -1 ) { return false; } const category = String( categoryName || "" ) .trim() .toLowerCase(); if (!category) { return false; } /** * -------------------------------------------------------- * INTERNATIONAL * -------------------------------------------------------- */ const internationalKeywords = [ "international", "world", "বিশ্ব", "আন্তর্জাতিক", "বিদেশ" ]; /** * -------------------------------------------------------- * CRIME * -------------------------------------------------------- */ const crimeKeywords = [ "crime", "law-and-court", "law-court", "law-crime", "অপরাধ", "আইন ও আদালত", "আইন-আদালত", "আইন আদালত", "হত্যা", "দুর্ঘটনা" ]; /** * -------------------------------------------------------- * POLITICS * -------------------------------------------------------- */ const politicsKeywords = [ "politics", "bd-politics", "রাজনীতি" ]; const specialKeywords = internationalKeywords .concat( crimeKeywords ) .concat( politicsKeywords ); for ( let i = 0; i < specialKeywords.length; i++ ) { const keyword = String( specialKeywords[i] || "" ) .trim() .toLowerCase(); if ( keyword && category.indexOf( keyword ) !== -1 ) { return true; } } return false; } /** * ========================================================== * SAFE SPECIAL NEWS RULE TEST * ========================================================== * * NO WordPress publish. * NO category creation. * NO sheet modification. */ function testSpecialNewsCategoryRule() { const config = { site_url: "https://bangladeshdiplomat.com" }; const tests = [ "international", "আন্তর্জাতিক", "world", "বিশ্ব", "অপরাধ", "অপরাধ ও দুর্ঘটনা", "law-and-court", "আইন-আদালত", "politics", "bd-politics", "রাজনীতি", "sports", "entertainment", "business", "national", "education" ]; Logger.log( "========== SPECIAL NEWS ROUTER TEST START ==========" ); tests.forEach( function(category) { const special = wpShouldAddSpecialNews_( category, config ); Logger.log( "CATEGORY=" + category + " | SPECIAL_NEWS=" + ( special ? "YES" : "NO" ) ); } ); Logger.log( "WORDPRESS POSTS CREATED : 0" ); Logger.log( "WORDPRESS CATEGORIES CREATED : 0" ); Logger.log( "SHEET ROWS MODIFIED : 0" ); Logger.log( "========== SPECIAL NEWS ROUTER TEST COMPLETE ==========" ); } https://bangladeshdiplomat.com/post-sitemap.xml 2026-08-30T19:09:30+00:00 https://bangladeshdiplomat.com/page-sitemap.xml 2026-08-15T20:47:21+00:00 https://bangladeshdiplomat.com/live-sitemap.xml 2024-10-31T10:58:23+00:00 https://bangladeshdiplomat.com/video_gallery-sitemap.xml 2024-09-09T18:10:18+00:00 https://bangladeshdiplomat.com/photo_gallery-sitemap.xml 2024-09-08T06:04:16+00:00 https://bangladeshdiplomat.com/category-sitemap.xml 2026-08-30T19:09:30+00:00 https://bangladeshdiplomat.com/videocat-sitemap.xml 2023-10-30T12:39:33+00:00 https://bangladeshdiplomat.com/photocat-sitemap.xml 2023-10-30T12:36:13+00:00 https://bangladeshdiplomat.com/author-sitemap.xml 2026-08-28T18:10:49+00:00