HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux host 6.8.0-107-generic #107-Ubuntu SMP PREEMPT_DYNAMIC Fri Mar 13 19:51:50 UTC 2026 x86_64
User: w230 (1248)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: //proc/7195/root/backup/w155.sql
/*M!999999\- enable the sandbox mode */ 
-- MariaDB dump 10.19  Distrib 10.11.14-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: localhost    Database: w155
-- ------------------------------------------------------
-- Server version	10.11.14-MariaDB-0ubuntu0.24.04.1

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `wp_commentmeta`
--

DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_commentmeta`
--

LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_comments`
--

DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
  `comment_author` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) NOT NULL DEFAULT '',
  `comment_type` varchar(20) NOT NULL DEFAULT 'comment',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_comments`
--

LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_kbp_form_entry`
--

DROP TABLE IF EXISTS `wp_kbp_form_entry`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_kbp_form_entry` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `form_id` varchar(55) DEFAULT NULL,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `date_created` datetime NOT NULL,
  `user_ip` int(11) unsigned NOT NULL DEFAULT 0,
  `user_device` varchar(55) DEFAULT NULL,
  `referer` varchar(255) DEFAULT NULL,
  `status` varchar(10) DEFAULT 'publish',
  `uuid` varchar(100) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `post_id` (`post_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_kbp_form_entry`
--

LOCK TABLES `wp_kbp_form_entry` WRITE;
/*!40000 ALTER TABLE `wp_kbp_form_entry` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_kbp_form_entry` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_kbp_form_entrymeta`
--

DROP TABLE IF EXISTS `wp_kbp_form_entrymeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_kbp_form_entrymeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `kbp_form_entry_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `entry_id` (`kbp_form_entry_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_kbp_form_entrymeta`
--

LOCK TABLES `wp_kbp_form_entrymeta` WRITE;
/*!40000 ALTER TABLE `wp_kbp_form_entrymeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_kbp_form_entrymeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_links`
--

DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) NOT NULL DEFAULT '',
  `link_name` varchar(255) NOT NULL DEFAULT '',
  `link_image` varchar(255) NOT NULL DEFAULT '',
  `link_target` varchar(25) NOT NULL DEFAULT '',
  `link_description` varchar(255) NOT NULL DEFAULT '',
  `link_visible` varchar(20) NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT 1,
  `link_rating` int(11) NOT NULL DEFAULT 0,
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) NOT NULL DEFAULT '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_links`
--

LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_options`
--

DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) NOT NULL DEFAULT '',
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=681349 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_options`
--

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES
(1,'siteurl','http://ank.ssk.in.th','yes'),
(2,'home','http://ank.ssk.in.th','yes'),
(3,'blogname','anuban nonkhun(nonkhowittayakhan)','yes'),
(4,'blogdescription','ปรัชญาของโรงเรียนสุวิชาโน  สุปฏิปนโน  ภวํ  โหติผู้รู้ดี    ผู้ปฏิบัติดี    คือผู้เจริญ','yes'),
(5,'users_can_register','0','yes'),
(6,'admin_email','ttwanna@gmail.com','yes'),
(7,'start_of_week','1','yes'),
(8,'use_balanceTags','0','yes'),
(9,'use_smilies','1','yes'),
(10,'require_name_email','','yes'),
(11,'comments_notify','','yes'),
(12,'posts_per_rss','10','yes'),
(13,'rss_use_excerpt','0','yes'),
(14,'mailserver_url','mail.example.com','yes'),
(15,'mailserver_login','login@example.com','yes'),
(16,'mailserver_pass','password','yes'),
(17,'mailserver_port','110','yes'),
(18,'default_category','1','yes'),
(19,'default_comment_status','','yes'),
(20,'default_ping_status','','yes'),
(21,'default_pingback_flag','','yes'),
(22,'posts_per_page','10','yes'),
(23,'date_format','F j, Y','yes'),
(24,'time_format','g:i a','yes'),
(25,'links_updated_date_format','F j, Y g:i a','yes'),
(26,'comment_moderation','','yes'),
(27,'moderation_notify','','yes'),
(28,'permalink_structure','/index.php/%year%/%monthnum%/%day%/%postname%/','yes'),
(29,'rewrite_rules','a:98:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:57:\"index.php/category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:52:\"index.php/category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:33:\"index.php/category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:45:\"index.php/category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:27:\"index.php/category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:54:\"index.php/tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:49:\"index.php/tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:30:\"index.php/tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:42:\"index.php/tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:24:\"index.php/tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:55:\"index.php/type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:50:\"index.php/type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:31:\"index.php/type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:43:\"index.php/type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:25:\"index.php/type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:12:\"sitemap\\.xml\";s:24:\"index.php??sitemap=index\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:42:\"index.php/feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:37:\"index.php/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:18:\"index.php/embed/?$\";s:21:\"index.php?&embed=true\";s:30:\"index.php/page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:39:\"index.php/gb-template-viewer(/(.*))?/?$\";s:41:\"index.php?&gb-template-viewer=$matches[2]\";s:51:\"index.php/comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:46:\"index.php/comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:27:\"index.php/comments/embed/?$\";s:21:\"index.php?&embed=true\";s:54:\"index.php/search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:49:\"index.php/search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:30:\"index.php/search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:42:\"index.php/search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:24:\"index.php/search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:57:\"index.php/author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:52:\"index.php/author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:33:\"index.php/author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:45:\"index.php/author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:27:\"index.php/author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:79:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:74:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:55:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:67:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:49:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:66:\"index.php/([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:61:\"index.php/([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:42:\"index.php/([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:54:\"index.php/([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:36:\"index.php/([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:53:\"index.php/([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:48:\"index.php/([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:29:\"index.php/([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:41:\"index.php/([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:23:\"index.php/([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:68:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:78:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:98:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:93:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:93:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:74:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:63:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:67:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:87:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:82:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:75:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:82:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:71:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:57:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:67:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:87:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:82:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:82:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:63:\"index.php/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:74:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:61:\"index.php/([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:48:\"index.php/([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:37:\"index.php/.?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"index.php/.?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"index.php/.?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"index.php/.?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"index.php/.?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"index.php/.?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"index.php/(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:30:\"index.php/(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:50:\"index.php/(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:45:\"index.php/(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:38:\"index.php/(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:45:\"index.php/(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:34:\"index.php/(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),
(30,'hack_file','0','yes'),
(31,'blog_charset','UTF-8','yes'),
(32,'moderation_keys','','no'),
(33,'active_plugins','a:3:{i:0;s:25:\"generateblocks/plugin.php\";i:1;s:35:\"plugin-inmymine/protect-uploads.php\";i:2;s:39:\"wp-file-manager/file_folder_manager.php\";}','yes'),
(34,'category_base','','yes'),
(35,'ping_sites','https://rpc.pingomatic.com/','yes'),
(36,'comment_max_links','2','yes'),
(37,'gmt_offset','7','yes'),
(38,'default_email_category','1','yes'),
(39,'recently_edited','a:5:{i:0;s:63:\"/var/www/w155/html/wp-content/plugins/generateblocks/plugin.php\";i:1;s:65:\"/var/www/web085/html/wp-content/plugins/generateblocks/plugin.php\";i:2;s:58:\"/var/www/web085/html/wp-content/themes/twentyten/style.css\";i:3;s:57:\"/var/www/web085/html/wp-content/themes/colormag/style.css\";i:4;s:59:\"/var/www/web085/html/wp-content/plugins/akismet/akismet.php\";}','no'),
(40,'template','colormag','yes'),
(41,'stylesheet','colormag','yes'),
(42,'comment_registration','','yes'),
(43,'html_type','text/html','yes'),
(44,'use_trackback','0','yes'),
(45,'default_role','administrator','yes'),
(46,'db_version','60421','yes'),
(47,'uploads_use_yearmonth_folders','1','yes'),
(48,'upload_path','','yes'),
(49,'blog_public','1','yes'),
(50,'default_link_category','2','yes'),
(51,'show_on_front','posts','yes'),
(52,'tag_base','','yes'),
(53,'show_avatars','1','yes'),
(54,'avatar_rating','G','yes'),
(55,'upload_url_path','','yes'),
(56,'thumbnail_size_w','150','yes'),
(57,'thumbnail_size_h','150','yes'),
(58,'thumbnail_crop','1','yes'),
(59,'medium_size_w','300','yes'),
(60,'medium_size_h','300','yes'),
(61,'avatar_default','mystery','yes'),
(62,'large_size_w','1024','yes'),
(63,'large_size_h','1024','yes'),
(64,'image_default_link_type','none','yes'),
(65,'image_default_size','','yes'),
(66,'image_default_align','','yes'),
(67,'close_comments_for_old_posts','','yes'),
(68,'close_comments_days_old','14','yes'),
(69,'thread_comments','','yes'),
(70,'thread_comments_depth','5','yes'),
(71,'page_comments','','yes'),
(72,'comments_per_page','50','yes'),
(73,'default_comments_page','newest','yes'),
(74,'comment_order','asc','yes'),
(75,'sticky_posts','a:0:{}','yes'),
(76,'widget_categories','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
(77,'widget_text','a:6:{i:2;a:2:{s:5:\"title\";s:14:\"Premium Themes\";s:4:\"text\";s:755:\"<ul>\r\n										<li><a href=\"https://themegrill.com/themes/spacious-pro/\">Spacious Pro</a></li>\r\n										<li><a href=\"https://themegrill.com/themes/foodhunt-pro/\">FoodHunt Pro</a></li>\r\n										<li><a href=\"https://themegrill.com/themes/colornews-pro/\">ColorNews Pro</a></li>\r\n										<li><a href=\"https://themegrill.com/themes/accelerate-pro/\">Accelerate Pro</a></li>\r\n										<li><a href=\"https://themegrill.com/themes/esteem-pro/\">Esteem Pro</a></li>\r\n										<li><a href=\"https://http://themegrill.com/themes/radiate-pro/\">Radiate Pro</a></li>\r\n										<li><a href=\"https://themegrill.com/themes/fitclub-pro/\">Fitclub Pro</a></li>\r\n										<li><a href=\"https://themegrill.com/themes/himalayas-pro/\">Himalayas Pro</a></li>\r\n									</ul>\";}i:3;a:2:{s:5:\"title\";s:8:\"About Us\";s:4:\"text\";s:350:\"<a title=\"logo\" href=\"http://web085.ssk.in.th\"><img src=\"http://web085.ssk.in.th/wp-content/themes/colormag/img/colormag-logo.png\" alt=\"Logo\" /></a> <br> We love WordPress and we are here to provide you with professional looking WordPress themes so that you can take your website one step ahead. We focus on simplicity, elegant design and clean code.\";}i:4;a:2:{s:5:\"title\";s:12:\"Useful Links\";s:4:\"text\";s:644:\"<ul>\r\n										<li><a href=\"https://themegrill.com/\">ThemeGrill</a></li>\r\n										<li><a href=\"https://themegrill.com/contact/\">Support</a></li>\r\n										<li><a href=\"https://docs.themegrill.com/colormag/\">Documentation</a></li>\r\n										<li><a href=\"https://themegrill.com/frequently-asked-questions/\">FAQ</a></li>\r\n										<li><a href=\"https://themegrill.com/themes/\">Themes</a></li>\r\n										<li><a href=\"https://themegrill.com/plugins/\">Plugins</a></li>\r\n										<li><a href=\"https://themegrill.com/blog/\">Blog</a></li>\r\n										<li><a href=\"https://themegrill.com/plans-pricing/\">Plans &amp; Pricing</a></li>\r\n									</ul>\";}i:5;a:2:{s:5:\"title\";s:12:\"Other Themes\";s:4:\"text\";s:757:\"<ul>\r\n										<li><a href=\"https://themegrill.com/themes/envince/\">Envince</a></li>\r\n										<li><a href=\"https://themegrill.com/themes/estore/\">eStore</a></li>\r\n										<li><a href=\"https://themegrill.com/themes/ample/\">Ample</a></li>\r\n										<li><a href=\"https://themegrill.com/themes/spacious/\">Spacious</a></li>\r\n										<li><a href=\"https://themegrill.com/themes/accelerate/\">Accelerate</a></li>\r\n										<li><a href=\"https://themegrill.com/themes/radiate/\">Radiate</a></li>\r\n										<li><a href=\"https://themegrill.com/themes/esteem/\">Esteem</a></li>\r\n										<li><a href=\"https://themegrill.com/themes/himalayas/\">Himalayas</a></li>\r\n										<li><a href=\"https://themegrill.com/themes/colornews/\">ColorNews</a></li>\r\n									</ul>\";}i:6;a:1:{s:4:\"text\";s:71:\"Contains all features of free version and many new additional features.\";}s:12:\"_multiwidget\";i:1;}','yes'),
(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
(79,'uninstall_plugins','a:0:{}','no'),
(80,'timezone_string','','yes'),
(81,'page_for_posts','0','yes'),
(82,'page_on_front','0','yes'),
(83,'default_post_format','0','yes'),
(84,'link_manager_enabled','0','yes'),
(85,'finished_splitting_shared_terms','1','yes'),
(86,'site_icon','0','yes'),
(87,'medium_large_size_w','768','yes'),
(88,'medium_large_size_h','0','yes'),
(89,'wp_page_for_privacy_policy','3','yes'),
(90,'show_comments_cookies_opt_in','','yes'),
(91,'admin_email_lifespan','1770499976','yes'),
(92,'disallowed_keys','','no'),
(93,'comment_previously_approved','','yes'),
(94,'auto_plugin_theme_update_emails','a:0:{}','no'),
(95,'auto_update_core_dev','enabled','yes'),
(96,'auto_update_core_minor','enabled','yes'),
(97,'auto_update_core_major','disabled','off'),
(98,'wp_force_deactivated_plugins','a:0:{}','off'),
(99,'initial_db_version','53496','yes'),
(100,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),
(101,'fresh_site','0','off'),
(102,'user_count','1','no'),
(103,'widget_block','a:14:{i:3;a:1:{s:7:\"content\";s:12437:\"<!-- wp:kadence/accordion {\"uniqueID\":\"_ba0329-60\",\"paneCount\":7,\"startCollapsed\":true,\"contentBorder\":[0,0,0,0],\"titleStyles\":[{\"size\":[16,\"\",\"\"],\"sizeType\":\"px\",\"lineHeight\":[24,\"\",\"\"],\"lineType\":\"px\",\"letterSpacing\":\"\",\"family\":\"\",\"google\":\"\",\"style\":\"\",\"weight\":\"\",\"variant\":\"\",\"subset\":\"\",\"loadGoogle\":true,\"padding\":[10,14,10,14],\"marginTop\":0,\"color\":\"#555555\",\"background\":\"#f2f2f2\",\"border\":[\"#555555\",\"#555555\",\"#555555\",\"#555555\"],\"borderRadius\":[0,0,0,0],\"borderWidth\":[0,0,0,0],\"colorHover\":\"#444444\",\"backgroundHover\":\"#eeeeee\",\"borderHover\":[\"#eeeeee\",\"#eeeeee\",\"#eeeeee\",\"#eeeeee\"],\"colorActive\":\"#ffffff\",\"backgroundActive\":\"#444444\",\"borderActive\":[\"#444444\",\"#444444\",\"#444444\",\"#444444\"],\"textTransform\":\"\"}],\"iconStyle\":\"arrowcircle\"} -->\n<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-wrap kt-accordion-id_ba0329-60 kt-accordion-has-7-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrowcircle kt-accodion-icon-side-right\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\">\n<!-- wp:kadence/pane {\"uniqueID\":\"_c6efb4-94\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane_c6efb4-94\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">ข้อมูลพื้นฐาน</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\">\n<!-- wp:paragraph -->\n<p><a href=\"http://web085.ssk.in.th/wp-content/uploads/2022/08/เกียรติบัตรระดับชาติ-สร้างเกมส์.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">1 โครงสร้างหน่วยงาน </a></p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>2 ข้อมูลผู้บริหาร </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>3 อำนาจหน้าที่ </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>4 แผนยุทธศาสตร์หรือแผนพัฒนาหน่วยงาน </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>5 ข้อมูลการติดต่อหน่วยงาน </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>6 กฎหมายที่เกี่ยวข้อง </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>7 ข่าวประชาสัมพันธ์ </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>8 Q&amp;A </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>9 social network</p>\n<!-- /wp:paragraph -->\n</div></div></div>\n<!-- /wp:kadence/pane -->\n<!-- wp:kadence/pane {\"id\":3,\"uniqueID\":\"_d8740b-eb\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-3 kt-pane_d8740b-eb\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">การเปิดเผยข้อมูล</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\">\n<!-- wp:paragraph -->\n<p>10 แผนดำเนินงานประจำปี </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>11 รายงานการกำกับติดตามการดำเนินงานรายไตรมาส </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>12 รายงานผลการดำเนินงานประจำปี </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>13 คู่มือหรือมาตรฐานการปฏิบัติงาน </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>14 คู่มือหรือมาตรฐานการให้บริการ </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>15 ข้อมูลเชิงสถิติการให้บริการ </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>16 รายงานผลการสำรวจความพึงพอใจการให้บริการ </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>17 E -Service</p>\n<!-- /wp:paragraph -->\n</div></div></div>\n<!-- /wp:kadence/pane -->\n<!-- wp:kadence/pane {\"id\":7,\"uniqueID\":\"_cc5f84-f1\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-7 kt-pane_cc5f84-f1\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">การบริหารเงินงบประมาณ</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\">\n<!-- wp:paragraph -->\n<p>18 แผนการใช้จ่ายงบประมาณประจำปี </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>19 รายงานการกำกับติดตามการใช้จ่ายงบประมาณรายไตรมาส </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>20 รายงานผลการใช้จ่ายงบประมาณประจำปี </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>21 แผนการจัดซื้อจัดจ้างหรือแผนการจัดหาพัสดุ </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>22 ประกาศต่างๆเกี่ยวกับการจัดซื้อจัดจ้างหรือการจัดหาพัสดุ </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>23 สรุปผลการจัดซื้อจัดจ้างหรือการจัดหาพัสดุรายเดือน </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>24 รายงานผลการจัดซื้อจัดจ้างหรือการจัดหาพัสดุประจำปี</p>\n<!-- /wp:paragraph -->\n</div></div></div>\n<!-- /wp:kadence/pane -->\n<!-- wp:kadence/pane {\"id\":2,\"uniqueID\":\"_4e0e5d-f4\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-2 kt-pane_4e0e5d-f4\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">การบริหารและพัฒนาทรัพยากรบุคคล</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\">\n<!-- wp:paragraph -->\n<p>25 นโยบายการบริหารทรัพยากรบุคคล </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>26 การดำเนินการตามนโยบายการบริหารทรัพยากรบุคคล </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>27 หลักเกณฑ์การบริหารและพัฒนาทรัพยากรบุคคล </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>28 รายงานผลการบริหารและพัฒนาทรัพยากรบุคคลประจำปี</p>\n<!-- /wp:paragraph -->\n</div></div></div>\n<!-- /wp:kadence/pane -->\n<!-- wp:kadence/pane {\"id\":4,\"uniqueID\":\"_7403b8-aa\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-4 kt-pane_7403b8-aa\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">การส่งเสริมความโปร่งใส</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\">\n<!-- wp:paragraph -->\n<p>29 แนวปฏิบัติการจัดการเรื่องร้องเรียนการทุจริต </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>30 ช่องทางแจ้งเรื่องร้องเรียนการทุจริต </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>31 ข้อมูลเชิงสถิติเรื่องร้องเรียนการทุจริตประจำปี </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>32 ช่องทางการรับฟังความคิดเห็น </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>33 การเปิดโอกาสให้เกิดการมีส่วนร่วม</p>\n<!-- /wp:paragraph -->\n</div></div></div>\n<!-- /wp:kadence/pane -->\n<!-- wp:kadence/pane {\"id\":5,\"uniqueID\":\"_da5f9a-ec\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-5 kt-pane_da5f9a-ec\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">การดำเนินการเพื่อป้องกันการทุจริต</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\">\n<!-- wp:paragraph -->\n<p>34 เจตจำนงสุจริตของผู้บริหาร </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>35 การมีส่วนร่วมของผู้บริหาร </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>36 การประเมินความเสี่ยงการทุจริตประจำปี </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>37การดำเนินการเพื่อจัดการความเสี่ยงการทุจริตประเมินความเสี่ยงการทุจริตประจำปี </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>38 การเสริมสร้างวัฒนธรรมองค์กร </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>39 แผนปฏิบัติการป้องกันการทุจริตประจำปี </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>40 รายงานการกำกับติดตามการดำเนินการป้องกันการทุจริตรายไตรมาส </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>41 รายงานผลการดำเนินการป้องกันการทุจริตประจำปี</p>\n<!-- /wp:paragraph -->\n</div></div></div>\n<!-- /wp:kadence/pane -->\n<!-- wp:kadence/pane {\"id\":6,\"uniqueID\":\"_2028d7-0f\"} -->\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-6 kt-pane_2028d7-0f\"><div class=\"kt-accordion-header-wrap\"><button class=\"kt-blocks-accordion-header kt-acccordion-button-label-show\"><span class=\"kt-blocks-accordion-title-wrap\"><span class=\"kt-blocks-accordion-title\">มาตการภายในเพื่อป้องกันการทุจริต</span></span><span class=\"kt-blocks-accordion-icon-trigger\"></span></button></div><div class=\"kt-accordion-panel\"><div class=\"kt-accordion-panel-inner\">\n<!-- wp:paragraph -->\n<p>42 มาตรการส่งเสริมคุณธรรมและความโปร่งใสในหน่วยงาน </p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>43 การดำเนินงานตามมาตรการส่งเสริมคุณธรรมและความโปร่งใสในหน่วยงาน</p>\n<!-- /wp:paragraph -->\n</div></div></div>\n<!-- /wp:kadence/pane -->\n</div></div></div>\n<!-- /wp:kadence/accordion -->\";}i:4;a:1:{s:7:\"content\";s:491:\"<!-- wp:generateblocks/headline {\"uniqueId\":\"012d9e5d\",\"blockVersion\":3,\"typography\":{\"fontSize\":\"20px\",\"textAlign\":\"center\",\"fontSizeMobile\":\"18px\"},\"spacing\":{\"paddingTop\":\"10px\",\"paddingRight\":\"20px\",\"paddingBottom\":\"10px\",\"paddingLeft\":\"20px\"},\"borders\":{\"borderTopRightRadius\":\"10px\",\"borderTopLeftRadius\":\"10px\"},\"backgroundColor\":\"#f78da7\",\"textColor\":\"#ffffff\"} -->\n<h2 class=\"gb-headline gb-headline-012d9e5d gb-headline-text\">page facebook</h2>\n<!-- /wp:generateblocks/headline -->\";}i:5;a:1:{s:7:\"content\";s:422:\"<!-- wp:image {\"id\":196,\"sizeSlug\":\"medium\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-medium is-style-default\"><img src=\"http://web085.ssk.in.th/wp-content/uploads/2022/08/ผอ.-225x300.jpg\" alt=\"\" class=\"wp-image-196\"/><figcaption class=\"wp-element-caption\"><strong>นายคำพร แก้ววิเศษ</strong></figcaption></figure>\n<!-- /wp:image -->\";}i:6;a:1:{s:7:\"content\";s:515:\"<!-- wp:generateblocks/headline {\"uniqueId\":\"471e556c\",\"element\":\"h1\",\"blockVersion\":3,\"typography\":{\"fontSize\":\"20px\",\"fontSizeMobile\":\"18px\",\"textAlign\":\"center\"},\"spacing\":{\"paddingTop\":\"10px\",\"paddingRight\":\"20px\",\"paddingBottom\":\"10px\",\"paddingLeft\":\"20px\"},\"borders\":{\"borderTopRightRadius\":\"10px\",\"borderTopLeftRadius\":\"10px\"},\"backgroundColor\":\"#f78da7\",\"textColor\":\"#ffffff\"} -->\n<h1 class=\"gb-headline gb-headline-471e556c gb-headline-text\"><strong>I T A</strong></h1>\n<!-- /wp:generateblocks/headline -->\";}i:8;a:1:{s:7:\"content\";s:431:\"<!-- wp:generateblocks/headline {\"uniqueId\":\"65a7ec03\",\"blockVersion\":3,\"typography\":{\"fontSize\":\"20px\"},\"spacing\":{\"paddingTop\":\"10px\",\"paddingRight\":\"20px\",\"paddingBottom\":\"10px\",\"paddingLeft\":\"20px\"},\"backgroundColor\":\"#f78da7\",\"textColor\":\"#ffffff\"} -->\n<h2 class=\"gb-headline gb-headline-65a7ec03 gb-headline-text\">จดหมายข่าวประชาสัมพันธ์</h2>\n<!-- /wp:generateblocks/headline -->\";}i:9;a:1:{s:7:\"content\";s:7585:\"<!-- wp:kadence/advancedgallery {\"uniqueID\":\"_a3f3bc-8d\",\"ids\":[173,174,175,176,177,178,179],\"type\":\"carousel\",\"imageRatio\":\"land43\",\"linkTo\":\"media\",\"autoPlay\":true,\"autoSpeed\":4000,\"lightbox\":\"magnific\"} -->\n<div class=\"wp-block-kadence-advancedgallery kb-gallery-wrap-id-_a3f3bc-8d\"><div class=\"kb-gallery-ul kb-gallery-type-carousel kb-gallery-id-_a3f3bc-8d kb-gallery-caption-style-bottom-hover kb-gallery-filter-none kb-gallery-magnific-init\" data-image-filter=\"none\" data-lightbox-caption=\"true\"><div class=\"kt-blocks-carousel kt-carousel-container-dotstyle-dark\"><div class=\"kt-blocks-carousel-init kb-gallery-carousel kt-carousel-arrowstyle-whiteondark kt-carousel-dotstyle-dark\" data-columns-xxl=\"3\" data-columns-xl=\"3\" data-columns-md=\"3\" data-columns-sm=\"2\" data-columns-xs=\"1\" data-columns-ss=\"1\" data-slider-anim-speed=\"400\" data-slider-scroll=\"1\" data-slider-arrows=\"true\" data-slider-dots=\"true\" data-slider-hover-pause=\"false\" data-slider-auto=\"true\" data-slider-speed=\"4000\"><div class=\"kb-slide-item kb-gallery-carousel-item\"><div class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><figure class=\"kb-gallery-figure kb-gallery-item-has-link kadence-blocks-gallery-item-hide-caption kb-has-image-ratio-land43\"><a href=\"http://web085.ssk.in.th/wp-content/uploads/2022/08/1.jpg\" class=\"kb-gallery-item-link\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land43\"><img src=\"http://web085.ssk.in.th/wp-content/uploads/2022/08/1.jpg\" width=\"450\" height=\"300\" data-full-image=\"http://web085.ssk.in.th/wp-content/uploads/2022/08/1.jpg\" data-light-image=\"http://web085.ssk.in.th/wp-content/uploads/2022/08/1.jpg\" data-id=\"173\" data-link=\"http://web085.ssk.in.th/1/\" data-custom-link=\"\" data-custom-link-target=\"\" data-sponsored=\"\" class=\"wp-image-173 skip-lazy\"/></div></div></a></figure></div></div></div><div class=\"kb-slide-item kb-gallery-carousel-item\"><div class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><figure class=\"kb-gallery-figure kb-gallery-item-has-link kadence-blocks-gallery-item-hide-caption kb-has-image-ratio-land43\"><a href=\"http://web085.ssk.in.th/wp-content/uploads/2022/08/2.jpg\" class=\"kb-gallery-item-link\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land43\"><img src=\"http://web085.ssk.in.th/wp-content/uploads/2022/08/2.jpg\" width=\"450\" height=\"300\" data-full-image=\"http://web085.ssk.in.th/wp-content/uploads/2022/08/2.jpg\" data-light-image=\"http://web085.ssk.in.th/wp-content/uploads/2022/08/2.jpg\" data-id=\"174\" data-link=\"http://web085.ssk.in.th/2/\" data-custom-link=\"\" data-custom-link-target=\"\" data-sponsored=\"\" class=\"wp-image-174 skip-lazy\"/></div></div></a></figure></div></div></div><div class=\"kb-slide-item kb-gallery-carousel-item\"><div class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><figure class=\"kb-gallery-figure kb-gallery-item-has-link kadence-blocks-gallery-item-hide-caption kb-has-image-ratio-land43\"><a href=\"http://web085.ssk.in.th/wp-content/uploads/2022/08/3.jpg\" class=\"kb-gallery-item-link\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land43\"><img src=\"http://web085.ssk.in.th/wp-content/uploads/2022/08/3.jpg\" width=\"450\" height=\"300\" data-full-image=\"http://web085.ssk.in.th/wp-content/uploads/2022/08/3.jpg\" data-light-image=\"http://web085.ssk.in.th/wp-content/uploads/2022/08/3.jpg\" data-id=\"175\" data-link=\"http://web085.ssk.in.th/3/\" data-custom-link=\"\" data-custom-link-target=\"\" data-sponsored=\"\" class=\"wp-image-175 skip-lazy\"/></div></div></a></figure></div></div></div><div class=\"kb-slide-item kb-gallery-carousel-item\"><div class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><figure class=\"kb-gallery-figure kb-gallery-item-has-link kadence-blocks-gallery-item-hide-caption kb-has-image-ratio-land43\"><a href=\"http://web085.ssk.in.th/wp-content/uploads/2022/08/5.jpg\" class=\"kb-gallery-item-link\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land43\"><img src=\"http://web085.ssk.in.th/wp-content/uploads/2022/08/5.jpg\" width=\"450\" height=\"300\" data-full-image=\"http://web085.ssk.in.th/wp-content/uploads/2022/08/5.jpg\" data-light-image=\"http://web085.ssk.in.th/wp-content/uploads/2022/08/5.jpg\" data-id=\"176\" data-link=\"http://web085.ssk.in.th/5/\" data-custom-link=\"\" data-custom-link-target=\"\" data-sponsored=\"\" class=\"wp-image-176 skip-lazy\"/></div></div></a></figure></div></div></div><div class=\"kb-slide-item kb-gallery-carousel-item\"><div class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><figure class=\"kb-gallery-figure kb-gallery-item-has-link kadence-blocks-gallery-item-hide-caption kb-has-image-ratio-land43\"><a href=\"http://web085.ssk.in.th/wp-content/uploads/2022/08/6.jpg\" class=\"kb-gallery-item-link\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land43\"><img src=\"http://web085.ssk.in.th/wp-content/uploads/2022/08/6.jpg\" width=\"450\" height=\"300\" data-full-image=\"http://web085.ssk.in.th/wp-content/uploads/2022/08/6.jpg\" data-light-image=\"http://web085.ssk.in.th/wp-content/uploads/2022/08/6.jpg\" data-id=\"177\" data-link=\"http://web085.ssk.in.th/6/\" data-custom-link=\"\" data-custom-link-target=\"\" data-sponsored=\"\" class=\"wp-image-177 skip-lazy\"/></div></div></a></figure></div></div></div><div class=\"kb-slide-item kb-gallery-carousel-item\"><div class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><figure class=\"kb-gallery-figure kb-gallery-item-has-link kadence-blocks-gallery-item-hide-caption kb-has-image-ratio-land43\"><a href=\"http://web085.ssk.in.th/wp-content/uploads/2022/08/7.jpg\" class=\"kb-gallery-item-link\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land43\"><img src=\"http://web085.ssk.in.th/wp-content/uploads/2022/08/7.jpg\" width=\"450\" height=\"300\" data-full-image=\"http://web085.ssk.in.th/wp-content/uploads/2022/08/7.jpg\" data-light-image=\"http://web085.ssk.in.th/wp-content/uploads/2022/08/7.jpg\" data-id=\"178\" data-link=\"http://web085.ssk.in.th/7/\" data-custom-link=\"\" data-custom-link-target=\"\" data-sponsored=\"\" class=\"wp-image-178 skip-lazy\"/></div></div></a></figure></div></div></div><div class=\"kb-slide-item kb-gallery-carousel-item\"><div class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><figure class=\"kb-gallery-figure kb-gallery-item-has-link kadence-blocks-gallery-item-hide-caption kb-has-image-ratio-land43\"><a href=\"http://web085.ssk.in.th/wp-content/uploads/2022/08/8.jpg\" class=\"kb-gallery-item-link\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land43\"><img src=\"http://web085.ssk.in.th/wp-content/uploads/2022/08/8.jpg\" width=\"450\" height=\"300\" data-full-image=\"http://web085.ssk.in.th/wp-content/uploads/2022/08/8.jpg\" data-light-image=\"http://web085.ssk.in.th/wp-content/uploads/2022/08/8.jpg\" data-id=\"179\" data-link=\"http://web085.ssk.in.th/8/\" data-custom-link=\"\" data-custom-link-target=\"\" data-sponsored=\"\" class=\"wp-image-179 skip-lazy\"/></div></div></a></figure></div></div></div></div></div></div></div>\n<!-- /wp:kadence/advancedgallery -->\";}i:11;a:1:{s:7:\"content\";s:526:\"<!-- wp:generateblocks/headline {\"uniqueId\":\"00270063\",\"element\":\"h1\",\"blockVersion\":3,\"typography\":{\"fontSize\":\"20px\",\"textAlign\":\"center\",\"fontSizeMobile\":\"18px\"},\"spacing\":{\"paddingTop\":\"10px\",\"paddingRight\":\"20px\",\"paddingBottom\":\"10px\",\"paddingLeft\":\"20px\"},\"borders\":{\"borderTopRightRadius\":\"10px\",\"borderTopLeftRadius\":\"10px\"},\"backgroundColor\":\"#f78da7\",\"textColor\":\"#ffffff\"} -->\n<h1 class=\"gb-headline gb-headline-00270063 gb-headline-text\">ผู้อำนวยการ</h1>\n<!-- /wp:generateblocks/headline -->\";}i:12;a:1:{s:7:\"content\";s:476:\"<p><iframe src=\"https://www.facebook.com/plugins/page.php?href=https%3A%2F%2Fwww.facebook.com%2Fanubannonkhun&amp;tabs=timeline&amp;width=300&amp;height=500&amp;small_header=false&amp;adapt_container_width=true&amp;hide_cover=false&amp;show_facepile=true&amp;appId\" width=\"300\" height=\"500\" style=\"border:none;overflow:hidden\" scrolling=\"no\" frameborder=\"0\" allowfullscreen=\"true\" allow=\"autoplay; clipboard-write; encrypted-media; picture-in-picture; web-share\"></iframe></p>\";}s:12:\"_multiwidget\";i:1;i:14;a:1:{s:7:\"content\";s:12756:\"<div class=\"wp-block-kadence-accordion alignnone\"><div class=\"kt-accordion-wrap kt-accordion-wrap kt-accordion-id_ba0329-60 kt-accordion-has-7-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-arrowcircle kt-accodion-icon-side-right\" style=\"max-width:none\"><div class=\"kt-accordion-inner-wrap\" data-allow-multiple-open=\"false\" data-start-open=\"none\">\n<div class=\"wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-1 kt-pane_c6efb4-94\">\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/01.-โครงสร้าง.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">1 โครงสร้างหน่วยงาน </a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/02.-ข้อมูลผู้บริหาร.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">2 ข้อมูลผู้บริหาร </a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/03.-อํานาจหน้าที่-1.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">3 อํานาจหน้าที่ </a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/04.-ข้อมูลการติดต่อ.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">4 ข้อมูลการติดต่อ </a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/05.-ข่าวประชาสัมพันธ์.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">5 ข่าวประชาสัมพันธ์ </a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/06.-QA.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">6 Q&A </a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/07.-แผนยุทธศาสตร์หรือแผนพัฒนาหน่วยงาน.pdf\" target=\"_blank\" rel=\"noreferrer noopener\"> 7 แผนยุทธศาสตร์หรือแผนพัฒนาหน่วยงาน </a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/08.-แผนและความก้าวหน้าในการดําเนินงานและการใช้งบประมาณประจําปี.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">8 แผนและความก้าวหน้าในการดําเนินงานและการใช้งบประมาณประจําปี </a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/09.-รายงานผลการดําเนินงานประจําปี.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">9 รายงานผลการดําเนินงานประจําปี</a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/10.-คู่มือหรือแนวทางการปฏิบัติงานของเจ้าหน้าที่.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">10 คู่มือหรือแนวทางการปฏิบัติงานของเจ้าหน้าที่ </a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/11.-คู่มือหรือแนวทางการให้บริการสําหรับผู้รับบริการหรือผู้มาติดต่อ.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">11 คู่มือหรือแนวทางการให้บริการสําหรับผู้รับบริการหรือผู้มาติดต่อ </a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/12.-ข้อมูลสถิติการให้บริการ.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">12 ข้อมูลสถิติการให้บริการ* </a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/13.-E–Service.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">13 E–Service </a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/14.-รายการการจัดซื้อจัดจ้างหรือการจัดหาพัสดุ.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">14 รายการการจัดซื้อจัดจ้างหรือการจัดหาพัสดุ </a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/15.-ประกาศต่าง-ๆเกี่ยวกับการจัดซื้อจัดจ้างหรือการจัดหาพัสดุ.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">15 ประกาศต่าง ๆเกี่ยวกับการจัดซื้อจัดจ้างหรือการจัดหาพัสดุ </a></p>\n<p><a  href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/16.-ความก้าวหน้าการจัดซื้อจัดจ้างหรือการจัดหาพัสดุ.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">16 ความก้าวหน้าการจัดซื้อจัดจ้างหรือการจัดหาพัสดุ </a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/17.-รายงานสรุปผลการจัดซื้อจัดจ้างหรือการจัดหาพัสดุประจําปี.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">17 รายงานสรุปผลการจัดซื้อจัดจ้างหรือการจัดหาพัสดุประจําปี</a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/18.-แผนการบริหารและพัฒนาทรัพยากรบุคคล.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">18 แผนการบริหารและพัฒนาทรัพยากรบุคคล </a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/19.-รายงานผลการบริหารและพัฒนาทรัพยากรบุคคลประจําปี.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">19 รายงานผลการบริหารและพัฒนาทรัพยากรบุคคลประจําปี </a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/20.-ประมวลจริยธรรมสําหรับเจ้าหน้าที่ของรัฐ.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">20 ประมวลจริยธรรมสําหรับเจ้าหน้าที่ของรัฐ</a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/21.-การขับเคลื่อนจริยธรรม.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">21 การขับเคลื่อนจริยธรรม </a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/22.-แนวปฏิบัติการจัดการเรื่องร้องเรียนการทุจริตและประพฤติมิชอบ.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">22 แนวปฏิบัติการจัดการเรื่องร้องเรียนการทุจริตและประพฤติมิชอบ </a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/23.-ช่องทางแจ้งเรื่องร้องเรียนการทุจริตและประพฤติมิชอบ.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">23 ช่องทางแจ้งเรื่องร้องเรียนการทุจริตและประพฤติมิชอบ </a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/24.-ข้อมูลสถิติเรื่องร้องเรียนการทุจริตและประพฤติมิชอบ.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">24 ข้อมูลสถิติเรื่องร้องเรียนการทุจริตและประพฤติมิชอบ<</a></p>\n\n</a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/25.-การเปิดโอกาสให้เกิดการมีส่วนร่วม.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">25 การเปิดโอกาสให้เกิดการมีส่วนร่วม </a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/26.-ประกาศเจตนารมณ์นโยบาย-No-GiftPolicy-จากการปฏิบัติหน้าที่.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">26 ประกาศเจตนารมณ์นโยบาย No GiftPolicy จากการปฏิบัติหน้าที่ </a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/27.-การสร้างวัฒนธรรมNo-Gift-Policy.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">27 การสร้างวัฒนธรรมNo Gift Policy </a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/28.-รายงานผลตามนโยบาย-No-GiftPolicy.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">28 รายงานผลตามนโยบาย No GiftPolicy</a></p>\n\n</a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/29.-รายงานการรับทรัพย์สินหรือประโยชน์อื่นใดโดยธรรมจรรยา.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">29 รายงานการรับทรัพย์สินหรือประโยชน์อื่นใดโดยธรรมจรรยา </a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/30.-การประเมินความเสี่ยงการทุจริตในประเด็นที่เกี่ยวข้องกับสินบน.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">30 การประเมินความเสี่ยงการทุจริตในประเด็นที่เกี่ยวข้องกับสินบน </a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/31.-รายงานผลการดําเนินการเพื่อจัดการความเสี่ยงการทุจริตและประพฤติมิชอบประจําปี.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">31 รายงานผลการดําเนินการเพื่อจัดการความเสี่ยงการทุจริตและประพฤติมิชอบประจําปี </a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/32.-แผนปฏิบัติการป้องกันการทุจริต.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">32 แผนปฏิบัติการป้องกันการทุจริต </a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/33.-รายงานผลการดําเนินการป้องกันการทุจริตประจําปี.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">33 รายงานผลการดําเนินการป้องกันการทุจริตประจําปี</a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/34.-มาตรการส่งเสริมคุณธรรมและความโปร่งใสภายในหน่วยงาน.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">34 มาตรการส่งเสริมคุณธรรมและความโปร่งใสภายในหน่วยงาน </a></p>\n<p><a href=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/35.-รายงานผลการดําเนินการเพื่อส่งเสริมคุณธรรมและความโปร่งใสภายในหน่วยงาน.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">35 รายงานผลการดําเนินการเพื่อส่งเสริมคุณธรรมและความโปร่งใสภายในหน่วยงาน </p>\n\n</div></div></div>\";}i:19;a:1:{s:7:\"content\";s:131:\"<!-- wp:generateblocks/container {\"uniqueId\":\"f0ba815a\",\"isDynamic\":true,\"blockVersion\":4,\"typography\":{\"textAlign\":\"center\"}} /-->\";}i:24;a:1:{s:7:\"content\";s:102:\"<!-- wp:generateblocks/grid {\"uniqueId\":\"463bb89e\",\"columns\":0,\"isDynamic\":true,\"blockVersion\":3} /-->\";}i:25;a:1:{s:7:\"content\";s:120:\"<!-- wp:list -->\n<ul class=\"wp-block-list\"><!-- wp:list-item -->\n<li></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\";}i:26;a:1:{s:7:\"content\";s:178:\"<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\"><strong>ข้อมูลเผยแพร่สาธารณะ</strong></p>\n<!-- /wp:paragraph -->\";}}','on'),
(104,'sidebars_widgets','a:22:{s:19:\"wp_inactive_widgets\";a:10:{i:0;s:8:\"block-24\";i:1;s:8:\"block-25\";i:2;s:7:\"block-8\";i:3;s:7:\"block-9\";i:4;s:7:\"block-3\";i:5;s:6:\"text-2\";i:6;s:6:\"text-3\";i:7;s:6:\"text-4\";i:8;s:6:\"text-5\";i:9;s:6:\"text-6\";}s:22:\"colormag_right_sidebar\";a:7:{i:0;s:8:\"block-11\";i:1;s:7:\"block-5\";i:2;s:7:\"block-6\";i:3;s:8:\"block-26\";i:4;s:8:\"block-14\";i:5;s:7:\"block-4\";i:6;s:8:\"block-12\";}s:21:\"colormag_left_sidebar\";a:0:{}s:23:\"colormag_header_sidebar\";a:0:{}s:31:\"colormag_front_page_slider_area\";a:1:{i:0;s:39:\"colormag_featured_posts_slider_widget-2\";}s:38:\"colormag_front_page_area_beside_slider\";a:1:{i:0;s:35:\"colormag_highlighted_posts_widget-2\";}s:39:\"colormag_front_page_content_top_section\";a:1:{i:0;s:32:\"colormag_featured_posts_widget-2\";}s:47:\"colormag_front_page_content_middle_left_section\";a:1:{i:0;s:41:\"colormag_featured_posts_vertical_widget-2\";}s:48:\"colormag_front_page_content_middle_right_section\";a:1:{i:0;s:41:\"colormag_featured_posts_vertical_widget-3\";}s:42:\"colormag_front_page_content_bottom_section\";a:0:{}s:29:\"colormag_contact_page_sidebar\";a:0:{}s:31:\"colormag_error_404_page_sidebar\";a:0:{}s:47:\"colormag_advertisement_above_the_footer_sidebar\";a:0:{}s:33:\"colormag_footer_sidebar_one_upper\";a:0:{}s:33:\"colormag_footer_sidebar_two_upper\";a:0:{}s:35:\"colormag_footer_sidebar_three_upper\";a:0:{}s:27:\"colormag_footer_sidebar_one\";a:0:{}s:27:\"colormag_footer_sidebar_two\";a:0:{}s:29:\"colormag_footer_sidebar_three\";a:0:{}s:28:\"colormag_footer_sidebar_four\";a:0:{}s:16:\"header-sidebar-2\";a:1:{i:0;s:8:\"block-19\";}s:13:\"array_version\";i:3;}','on'),
(105,'cron','a:8:{i:1775223256;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1775240549;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1775241621;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1775283749;a:2:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1775284821;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1775284824;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1775352460;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','on'),
(106,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(107,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(108,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(109,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(110,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(111,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(112,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(113,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(114,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(115,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(116,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(117,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(119,'recovery_keys','a:0:{}','off'),
(120,'https_detection_errors','a:1:{s:20:\"https_request_failed\";a:1:{i:0;s:55:\"การร้องขอ HTTPS ล้มเหลว\";}}','off'),
(124,'theme_mods_twentytwentytwo','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1659623269;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','no'),
(172,'finished_updating_comment_type','1','yes'),
(173,'WPLANG','th','yes'),
(174,'new_admin_email','ttwanna@gmail.com','yes'),
(195,'ftp_credentials','a:3:{s:8:\"hostname\";s:9:\"localhost\";s:8:\"username\";s:4:\"w155\";s:15:\"connection_type\";s:3:\"ftp\";}','off'),
(276,'recently_activated','a:0:{}','off'),
(498,'wpdb_kbp_form_entry_version','2019101613','yes'),
(499,'wpdb_kbp_form_entrymeta_version','2019101021','yes'),
(500,'kbp_is_installed','1','yes'),
(501,'kt_plugin_api_manager_instance_id','ylOVnPfp19Co','yes'),
(4882,'_transient_health-check-site-status-result','{\"good\":14,\"recommended\":6,\"critical\":3}','yes'),
(59318,'wppopups_version','2.1.4.5','yes'),
(59319,'wppopups_activated','a:1:{s:4:\"lite\";i:1659623157;}','yes'),
(59322,'wppopups_review','a:2:{s:4:\"time\";i:1659623158;s:9:\"dismissed\";b:0;}','yes'),
(59331,'current_theme','ColorMag','yes'),
(59332,'theme_mods_colormag','a:15:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:13;}s:18:\"custom_css_post_id\";i:-1;s:12:\"header_image\";s:69:\"http://web085.ssk.in.th/wp-content/uploads/2022/08/cropped-banner.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:235;s:3:\"url\";s:69:\"http://web085.ssk.in.th/wp-content/uploads/2022/08/cropped-banner.jpg\";s:13:\"thumbnail_url\";s:69:\"http://web085.ssk.in.th/wp-content/uploads/2022/08/cropped-banner.jpg\";s:6:\"height\";i:323;s:5:\"width\";i:1500;}s:11:\"custom_logo\";i:267;s:25:\"colormag_container_layout\";s:5:\"boxed\";s:29:\"colormag_enable_site_identity\";s:0:\"\";s:28:\"colormag_enable_site_tagline\";s:0:\"\";s:35:\"colormag_enable_social_icons_header\";b:1;s:35:\"colormag_enable_social_icons_footer\";b:1;s:30:\"colormag_enable_featured_image\";b:1;s:20:\"colormag_retina_logo\";s:77:\"http://ank.ssk.in.th/wp-content/uploads/2024/08/Logo-ank-removebg-preview.png\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1724383578;s:4:\"data\";a:20:{s:19:\"wp_inactive_widgets\";a:8:{i:0;s:7:\"block-8\";i:1;s:7:\"block-9\";i:2;s:7:\"block-3\";i:3;s:6:\"text-2\";i:4;s:6:\"text-3\";i:5;s:6:\"text-4\";i:6;s:6:\"text-5\";i:7;s:6:\"text-6\";}s:22:\"colormag_right_sidebar\";a:6:{i:0;s:8:\"block-11\";i:1;s:7:\"block-5\";i:2;s:7:\"block-6\";i:3;s:8:\"block-14\";i:4;s:7:\"block-4\";i:5;s:8:\"block-12\";}s:21:\"colormag_left_sidebar\";a:0:{}s:23:\"colormag_header_sidebar\";a:0:{}s:31:\"colormag_front_page_slider_area\";a:1:{i:0;s:39:\"colormag_featured_posts_slider_widget-2\";}s:38:\"colormag_front_page_area_beside_slider\";a:1:{i:0;s:35:\"colormag_highlighted_posts_widget-2\";}s:39:\"colormag_front_page_content_top_section\";a:1:{i:0;s:32:\"colormag_featured_posts_widget-2\";}s:47:\"colormag_front_page_content_middle_left_section\";a:1:{i:0;s:41:\"colormag_featured_posts_vertical_widget-2\";}s:48:\"colormag_front_page_content_middle_right_section\";a:1:{i:0;s:41:\"colormag_featured_posts_vertical_widget-3\";}s:42:\"colormag_front_page_content_bottom_section\";a:0:{}s:29:\"colormag_contact_page_sidebar\";a:0:{}s:31:\"colormag_error_404_page_sidebar\";a:0:{}s:47:\"colormag_advertisement_above_the_footer_sidebar\";a:1:{i:0;s:8:\"block-19\";}s:33:\"colormag_footer_sidebar_one_upper\";a:0:{}s:33:\"colormag_footer_sidebar_two_upper\";a:0:{}s:35:\"colormag_footer_sidebar_three_upper\";a:0:{}s:27:\"colormag_footer_sidebar_one\";a:0:{}s:27:\"colormag_footer_sidebar_two\";a:0:{}s:29:\"colormag_footer_sidebar_three\";a:0:{}s:28:\"colormag_footer_sidebar_four\";a:0:{}}}s:30:\"colormag_site_title_typography\";a:2:{s:11:\"font-family\";s:7:\"default\";s:9:\"font-size\";a:3:{s:7:\"desktop\";a:2:{s:4:\"size\";d:20;s:4:\"unit\";s:2:\"px\";}s:6:\"tablet\";a:2:{s:4:\"size\";d:0;s:4:\"unit\";s:2:\"px\";}s:6:\"mobile\";a:2:{s:4:\"size\";d:0;s:4:\"unit\";s:2:\"px\";}}}}','on'),
(59333,'theme_switched','','yes'),
(59334,'colormag_upgrade_notice_start_time','1659623269','yes'),
(59335,'colormag_social_icons_control_migrate','1','yes'),
(59337,'widget_colormag_featured_posts_slider_widget','a:2:{i:2;a:3:{s:6:\"number\";i:4;s:4:\"type\";s:6:\"latest\";s:8:\"category\";i:4;}s:12:\"_multiwidget\";i:1;}','yes'),
(59338,'widget_colormag_highlighted_posts_widget','a:2:{i:2;a:3:{s:6:\"number\";i:4;s:4:\"type\";s:6:\"latest\";s:8:\"category\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),
(59339,'widget_colormag_featured_posts_widget','a:2:{i:2;a:6:{s:13:\"widget_layout\";s:0:\"\";s:5:\"title\";s:66:\"ข่าวสารกิจกรรมโรงเรียน\";s:4:\"text\";s:0:\"\";s:6:\"number\";i:5;s:4:\"type\";s:8:\"category\";s:8:\"category\";i:4;}s:12:\"_multiwidget\";i:1;}','yes'),
(59340,'widget_colormag_featured_posts_vertical_widget','a:3:{i:2;a:6:{s:13:\"widget_layout\";s:0:\"\";s:5:\"title\";s:66:\"เผยแพร่ผลงานทางวิชาการ\";s:4:\"text\";s:0:\"\";s:6:\"number\";i:4;s:4:\"type\";s:6:\"latest\";s:8:\"category\";s:0:\"\";}i:3;a:6:{s:13:\"widget_layout\";s:0:\"\";s:5:\"title\";s:60:\"เผยแพร่ผลงานนักเรียน\";s:4:\"text\";s:0:\"\";s:6:\"number\";i:4;s:4:\"type\";s:6:\"latest\";s:8:\"category\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),
(59341,'widget_colormag_728x90_advertisement_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(59342,'widget_colormag_300x250_advertisement_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(59343,'widget_colormag_125x125_advertisement_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(59363,'category_children','a:0:{}','yes'),
(59367,'widget_recent-comments','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
(59369,'widget_recent-posts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
(59370,'colormag_admin_notice_welcome','1','yes'),
(59371,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','off'),
(59421,'Team_B_default_Settings','s:452:\"a:13:{s:16:\"team_mb_name_clr\";s:7:\"#000000\";s:15:\"team_mb_pos_clr\";s:7:\"#000000\";s:16:\"team_mb_desc_clr\";s:7:\"#000000\";s:23:\"team_mb_social_icon_clr\";s:7:\"#4f4f4f\";s:26:\"team_mb_social_icon_clr_bg\";s:7:\"#e5e5e5\";s:20:\"team_mb_name_ft_size\";i:18;s:19:\"team_mb_pos_ft_size\";i:14;s:20:\"team_mb_desc_ft_size\";i:14;s:11:\"font_family\";s:9:\"Open Sans\";s:11:\"team_layout\";i:4;s:10:\"custom_css\";s:0:\"\";s:19:\"team_mb_wrap_bg_clr\";s:7:\"#ffffff\";s:6:\"design\";i:1;}\";','yes'),
(59422,'wpsm_team_p_review','a:2:{s:4:\"time\";i:1659624476;s:9:\"dismissed\";b:0;}','yes'),
(59423,'generateblocks_dynamic_css_posts','a:0:{}','yes'),
(59424,'generateblocks_dynamic_css_time','1659624479','yes'),
(59426,'generateblocks_version','2.1.0','yes'),
(59554,'wppopups_preview_page','125','yes'),
(59570,'dismissed_update_core','a:1:{s:8:\"6.0.1|th\";b:1;}','no'),
(110946,'wp_calendar_block_has_published_posts','1','yes'),
(111186,'site_logo','267','yes'),
(583308,'colormag_free_major_update_customizer_migration_v1','1','yes'),
(583310,'wp_attachment_pages_enabled','1','yes'),
(583311,'db_upgraded','','on'),
(583333,'colormag_admin_noticewelcome','1','yes'),
(584912,'_site_transient_wp_plugin_dependencies_plugin_data','a:0:{}','off'),
(584943,'theme_mods_plant','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:13;s:6:\"mobile\";i:13;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1724297008;s:4:\"data\";a:13:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:6:\"text-2\";i:1;s:6:\"text-3\";i:2;s:6:\"text-4\";i:3;s:6:\"text-5\";i:4;s:6:\"text-6\";}s:8:\"rightbar\";a:6:{i:0;s:8:\"block-11\";i:1;s:7:\"block-5\";i:2;s:7:\"block-6\";i:3;s:7:\"block-3\";i:4;s:7:\"block-4\";i:5;s:8:\"block-12\";}s:7:\"leftbar\";a:0:{}s:7:\"shopbar\";a:0:{}s:11:\"home_banner\";a:0:{}s:6:\"search\";a:0:{}s:6:\"action\";a:0:{}s:10:\"mobile_nav\";a:0:{}s:13:\"footer_blocks\";a:2:{i:0;s:7:\"block-8\";i:1;s:7:\"block-9\";}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}}}}','off'),
(584948,'acf_version','6.2.0','auto'),
(586775,'kirki_notices','a:1:{s:15:\"discount_notice\";i:1;}','auto'),
(588068,'theme_mods_zenno','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:6:\"menu-1\";i:13;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1724382719;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:9:{i:0;s:7:\"block-8\";i:1;s:7:\"block-9\";i:2;s:7:\"block-3\";i:3;s:6:\"text-2\";i:4;s:6:\"text-3\";i:5;s:6:\"text-4\";i:6;s:6:\"text-5\";i:7;s:6:\"text-6\";i:8;s:8:\"block-19\";}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"block-11\";i:1;s:7:\"block-5\";i:2;s:7:\"block-6\";i:3;s:8:\"block-14\";i:4;s:7:\"block-4\";i:5;s:8:\"block-12\";}}}}','off'),
(588078,'theme_mods_twentyten','a:6:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:13;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1754948217;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:10:{i:0;s:8:\"block-24\";i:1;s:8:\"block-25\";i:2;s:7:\"block-8\";i:3;s:7:\"block-9\";i:4;s:7:\"block-3\";i:5;s:6:\"text-2\";i:6;s:6:\"text-3\";i:7;s:6:\"text-4\";i:8;s:6:\"text-5\";i:9;s:6:\"text-6\";}s:19:\"primary-widget-area\";a:7:{i:0;s:8:\"block-11\";i:1;s:7:\"block-5\";i:2;s:7:\"block-6\";i:3;s:8:\"block-26\";i:4;s:8:\"block-14\";i:5;s:7:\"block-4\";i:6;s:8:\"block-12\";}s:21:\"secondary-widget-area\";a:0:{}s:24:\"first-footer-widget-area\";a:1:{i:0;s:8:\"block-19\";}s:25:\"second-footer-widget-area\";a:0:{}s:24:\"third-footer-widget-area\";a:0:{}s:25:\"fourth-footer-widget-area\";a:0:{}}}s:12:\"header_image\";s:78:\"http://ank.ssk.in.th/wp-content/uploads/2024/08/cropped-cropped-IMG_5208-1.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:346;s:3:\"url\";s:78:\"http://ank.ssk.in.th/wp-content/uploads/2024/08/cropped-cropped-IMG_5208-1.jpg\";s:13:\"thumbnail_url\";s:78:\"http://ank.ssk.in.th/wp-content/uploads/2024/08/cropped-cropped-IMG_5208-1.jpg\";s:6:\"height\";i:198;s:5:\"width\";i:940;}}','off'),
(609172,'_transient_wp_styles_for_blocks','a:2:{s:4:\"hash\";s:32:\"121bdfef764eecad6b29b611d397839a\";s:6:\"blocks\";a:5:{s:11:\"core/button\";s:0:\"\";s:14:\"core/site-logo\";s:0:\"\";s:18:\"core/post-template\";s:0:\"\";s:12:\"core/columns\";s:0:\"\";s:14:\"core/pullquote\";s:69:\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\";}}','on'),
(654396,'can_compress_scripts','0','on'),
(654405,'generateblocks','a:1:{s:20:\"disable_google_fonts\";b:0;}','auto'),
(654406,'gb_use_v1_blocks','1','off'),
(654409,'colormag_theme_installed_time','1754948218','auto'),
(654410,'colormag_outside_background_migration','1','auto'),
(664121,'fm_key','jWGOaDNoLVPK8bxl9XBdCHAIc','auto'),
(664124,'filemanager_email_verified_1','yes','auto'),
(680665,'_site_transient_timeout_php_check_76d2cd2a5eb29facccd351abf19ed9c8','1775284283','off'),
(680666,'_site_transient_php_check_76d2cd2a5eb29facccd351abf19ed9c8','a:5:{s:19:\"recommended_version\";s:3:\"8.3\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','off'),
(681313,'_site_transient_timeout_theme_roots','1775200097','off'),
(681314,'_site_transient_theme_roots','a:3:{s:8:\"colormag\";s:7:\"/themes\";s:5:\"plant\";s:7:\"/themes\";s:5:\"zenno\";s:7:\"/themes\";}','off'),
(681317,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:3:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.9.4.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.9.4.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.9.4-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.9.4-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.9.4\";s:7:\"version\";s:5:\"6.9.4\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.9.4.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.9.4.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.9.4-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.9.4-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.9.4\";s:7:\"version\";s:5:\"6.9.4\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.8.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.8.5.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.8.5-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.8.5-new-bundled.zip\";s:7:\"partial\";s:61:\"https://downloads.w.org/release/wordpress-6.8.5-partial-2.zip\";s:8:\"rollback\";s:62:\"https://downloads.w.org/release/wordpress-6.8.5-rollback-2.zip\";}s:7:\"current\";s:5:\"6.8.5\";s:7:\"version\";s:5:\"6.8.5\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:5:\"6.8.2\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1775198301;s:15:\"version_checked\";s:5:\"6.8.2\";s:12:\"translations\";a:1:{i:0;a:7:{s:4:\"type\";s:4:\"core\";s:4:\"slug\";s:7:\"default\";s:8:\"language\";s:2:\"th\";s:7:\"version\";s:6:\"5.8.13\";s:7:\"updated\";s:19:\"2022-06-08 04:30:30\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.8.13/th.zip\";s:10:\"autoupdate\";b:1;}}}','off'),
(681318,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1775198301;s:7:\"checked\";a:3:{s:8:\"colormag\";s:6:\"4.0.19\";s:5:\"plant\";s:5:\"2.5.9\";s:5:\"zenno\";s:5:\"1.1.2\";}s:8:\"response\";a:1:{s:8:\"colormag\";a:6:{s:5:\"theme\";s:8:\"colormag\";s:11:\"new_version\";s:5:\"4.1.2\";s:3:\"url\";s:38:\"https://wordpress.org/themes/colormag/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/theme/colormag.4.1.2.zip\";s:8:\"requires\";s:3:\"5.0\";s:12:\"requires_php\";s:3:\"7.4\";}}s:9:\"no_update\";a:1:{s:5:\"zenno\";a:6:{s:5:\"theme\";s:5:\"zenno\";s:11:\"new_version\";s:5:\"1.1.2\";s:3:\"url\";s:35:\"https://wordpress.org/themes/zenno/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/theme/zenno.1.1.2.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','off'),
(681319,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1775198302;s:8:\"response\";a:2:{s:25:\"generateblocks/plugin.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/generateblocks\";s:4:\"slug\";s:14:\"generateblocks\";s:6:\"plugin\";s:25:\"generateblocks/plugin.php\";s:11:\"new_version\";s:5:\"2.2.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/generateblocks/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/generateblocks.2.2.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/generateblocks/assets/icon.svg?rev=3239461\";s:3:\"svg\";s:59:\"https://ps.w.org/generateblocks/assets/icon.svg?rev=3239461\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/generateblocks/assets/banner-1544x500.png?rev=3239461\";s:2:\"1x\";s:69:\"https://ps.w.org/generateblocks/assets/banner-772x250.png?rev=3239461\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.5\";s:6:\"tested\";s:5:\"6.9.4\";s:12:\"requires_php\";s:3:\"7.2\";s:16:\"requires_plugins\";a:0:{}}s:35:\"plugin-inmymine/protect-uploads.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:29:\"w.org/plugins/protect-uploads\";s:4:\"slug\";s:15:\"protect-uploads\";s:6:\"plugin\";s:35:\"plugin-inmymine/protect-uploads.php\";s:11:\"new_version\";s:5:\"0.6.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/protect-uploads/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/protect-uploads.0.6.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-256x256.png?rev=2779778\";s:2:\"1x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-128x128.png?rev=2779778\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/protect-uploads/assets/banner-1544x500.png?rev=2779778\";s:2:\"1x\";s:70:\"https://ps.w.org/protect-uploads/assets/banner-772x250.png?rev=2779778\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.0.1\";s:6:\"tested\";s:5:\"6.9.4\";s:12:\"requires_php\";s:3:\"7.0\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:137:\"<p>Major update with new security features: watermarking, right-click protection, and password protection for individual media files.</p>\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:0:{}s:7:\"checked\";a:2:{s:25:\"generateblocks/plugin.php\";s:5:\"2.1.0\";s:35:\"plugin-inmymine/protect-uploads.php\";s:3:\"0.3\";}}','off'),
(681347,'_site_transient_timeout_wp_theme_files_patterns-4a6932edce68505e49999c04acfa30dd','1775222381','off'),
(681348,'_site_transient_wp_theme_files_patterns-4a6932edce68505e49999c04acfa30dd','a:2:{s:7:\"version\";s:6:\"4.0.19\";s:8:\"patterns\";a:0:{}}','off');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_postmeta`
--

DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=1686 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_postmeta`
--

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES
(218,65,'_wp_attached_file','2022/08/banner.jpg'),
(219,65,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1594;s:6:\"height\";i:614;s:4:\"file\";s:18:\"2022/08/banner.jpg\";s:8:\"filesize\";i:188138;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"banner-300x116.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:116;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10677;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"banner-1024x394.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:394;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60305;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"banner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6175;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"banner-768x296.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40577;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:19:\"banner-1536x592.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:592;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101427;}s:25:\"colormag-highlighted-post\";a:5:{s:4:\"file\";s:18:\"banner-392x272.jpg\";s:5:\"width\";i:392;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20323;}s:29:\"colormag-featured-post-medium\";a:5:{s:4:\"file\";s:18:\"banner-390x205.jpg\";s:5:\"width\";i:390;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18150;}s:28:\"colormag-featured-post-small\";a:5:{s:4:\"file\";s:17:\"banner-130x90.jpg\";s:5:\"width\";i:130;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4492;}s:23:\"colormag-featured-image\";a:5:{s:4:\"file\";s:18:\"banner-800x445.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47901;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(457,127,'_wp_attached_file','2022/08/banner-1.jpg'),
(458,127,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1594;s:6:\"height\";i:614;s:4:\"file\";s:20:\"2022/08/banner-1.jpg\";s:8:\"filesize\";i:188138;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"banner-1-300x116.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:116;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10677;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"banner-1-1024x394.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:394;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60305;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"banner-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6175;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"banner-1-768x296.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40577;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"banner-1-1536x592.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:592;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101427;}s:25:\"colormag-highlighted-post\";a:5:{s:4:\"file\";s:20:\"banner-1-392x272.jpg\";s:5:\"width\";i:392;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20323;}s:29:\"colormag-featured-post-medium\";a:5:{s:4:\"file\";s:20:\"banner-1-390x205.jpg\";s:5:\"width\";i:390;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18150;}s:28:\"colormag-featured-post-small\";a:5:{s:4:\"file\";s:19:\"banner-1-130x90.jpg\";s:5:\"width\";i:130;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4492;}s:23:\"colormag-featured-image\";a:5:{s:4:\"file\";s:20:\"banner-1-800x445.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47901;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(463,127,'_wp_attachment_custom_header_last_used_colormag','1661070844'),
(464,127,'_wp_attachment_is_custom_header','colormag'),
(469,137,'_wp_attached_file','2022/08/เกียรติบัตรระดับชาติ-สร้างเกมส์.pdf'),
(470,137,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:774826;}'),
(651,158,'_menu_item_type','custom'),
(652,158,'_menu_item_menu_item_parent','0'),
(653,158,'_menu_item_object_id','158'),
(654,158,'_menu_item_object','custom'),
(655,158,'_menu_item_target',''),
(656,158,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(657,158,'_menu_item_xfn',''),
(658,158,'_menu_item_url','http://ank.ssk.in.th/'),
(669,160,'_menu_item_type','custom'),
(670,160,'_menu_item_menu_item_parent','0'),
(671,160,'_menu_item_object_id','160'),
(672,160,'_menu_item_object','custom'),
(673,160,'_menu_item_target',''),
(674,160,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(675,160,'_menu_item_xfn',''),
(676,160,'_menu_item_url','#'),
(678,161,'_menu_item_type','custom'),
(679,161,'_menu_item_menu_item_parent','160'),
(680,161,'_menu_item_object_id','161'),
(681,161,'_menu_item_object','custom'),
(682,161,'_menu_item_target',''),
(683,161,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(684,161,'_menu_item_xfn',''),
(685,161,'_menu_item_url','http://ank.ssk.in.th/wp-content/uploads/2024/08/วิสัยทัศน์โรงเรียน.pdf'),
(759,170,'_wp_attached_file','2022/08/1561433182_7.jpg'),
(760,170,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:100;s:6:\"height\";i:120;s:4:\"file\";s:24:\"2022/08/1561433182_7.jpg\";s:8:\"filesize\";i:2749;s:5:\"sizes\";a:1:{s:28:\"colormag-featured-post-small\";a:5:{s:4:\"file\";s:23:\"1561433182_7-100x90.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2563;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(765,173,'_wp_attached_file','2022/08/1.jpg'),
(766,173,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:450;s:6:\"height\";i:300;s:4:\"file\";s:13:\"2022/08/1.jpg\";s:8:\"filesize\";i:39443;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19682;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9282;}s:25:\"colormag-highlighted-post\";a:5:{s:4:\"file\";s:13:\"1-392x272.jpg\";s:5:\"width\";i:392;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30064;}s:29:\"colormag-featured-post-medium\";a:5:{s:4:\"file\";s:13:\"1-390x205.jpg\";s:5:\"width\";i:390;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24289;}s:28:\"colormag-featured-post-small\";a:5:{s:4:\"file\";s:12:\"1-130x90.jpg\";s:5:\"width\";i:130;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5517;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(767,174,'_wp_attached_file','2022/08/2.jpg'),
(768,174,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:450;s:6:\"height\";i:300;s:4:\"file\";s:13:\"2022/08/2.jpg\";s:8:\"filesize\";i:27683;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17864;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8381;}s:25:\"colormag-highlighted-post\";a:5:{s:4:\"file\";s:13:\"2-392x272.jpg\";s:5:\"width\";i:392;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26828;}s:29:\"colormag-featured-post-medium\";a:5:{s:4:\"file\";s:13:\"2-390x205.jpg\";s:5:\"width\";i:390;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21232;}s:28:\"colormag-featured-post-small\";a:5:{s:4:\"file\";s:12:\"2-130x90.jpg\";s:5:\"width\";i:130;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5186;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(769,175,'_wp_attached_file','2022/08/3.jpg'),
(770,175,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:450;s:6:\"height\";i:300;s:4:\"file\";s:13:\"2022/08/3.jpg\";s:8:\"filesize\";i:37476;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18728;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8732;}s:25:\"colormag-highlighted-post\";a:5:{s:4:\"file\";s:13:\"3-392x272.jpg\";s:5:\"width\";i:392;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28937;}s:29:\"colormag-featured-post-medium\";a:5:{s:4:\"file\";s:13:\"3-390x205.jpg\";s:5:\"width\";i:390;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22707;}s:28:\"colormag-featured-post-small\";a:5:{s:4:\"file\";s:12:\"3-130x90.jpg\";s:5:\"width\";i:130;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5136;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(771,176,'_wp_attached_file','2022/08/5.jpg'),
(772,176,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:450;s:6:\"height\";i:300;s:4:\"file\";s:13:\"2022/08/5.jpg\";s:8:\"filesize\";i:29658;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15965;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7468;}s:25:\"colormag-highlighted-post\";a:5:{s:4:\"file\";s:13:\"5-392x272.jpg\";s:5:\"width\";i:392;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23523;}s:29:\"colormag-featured-post-medium\";a:5:{s:4:\"file\";s:13:\"5-390x205.jpg\";s:5:\"width\";i:390;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19437;}s:28:\"colormag-featured-post-small\";a:5:{s:4:\"file\";s:12:\"5-130x90.jpg\";s:5:\"width\";i:130;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4895;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(773,177,'_wp_attached_file','2022/08/6.jpg'),
(774,177,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:450;s:6:\"height\";i:300;s:4:\"file\";s:13:\"2022/08/6.jpg\";s:8:\"filesize\";i:30215;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15607;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7340;}s:25:\"colormag-highlighted-post\";a:5:{s:4:\"file\";s:13:\"6-392x272.jpg\";s:5:\"width\";i:392;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23579;}s:29:\"colormag-featured-post-medium\";a:5:{s:4:\"file\";s:13:\"6-390x205.jpg\";s:5:\"width\";i:390;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19375;}s:28:\"colormag-featured-post-small\";a:5:{s:4:\"file\";s:12:\"6-130x90.jpg\";s:5:\"width\";i:130;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4605;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(775,178,'_wp_attached_file','2022/08/7.jpg'),
(776,178,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:450;s:6:\"height\";i:300;s:4:\"file\";s:13:\"2022/08/7.jpg\";s:8:\"filesize\";i:33847;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16783;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8193;}s:25:\"colormag-highlighted-post\";a:5:{s:4:\"file\";s:13:\"7-392x272.jpg\";s:5:\"width\";i:392;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26075;}s:29:\"colormag-featured-post-medium\";a:5:{s:4:\"file\";s:13:\"7-390x205.jpg\";s:5:\"width\";i:390;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21566;}s:28:\"colormag-featured-post-small\";a:5:{s:4:\"file\";s:12:\"7-130x90.jpg\";s:5:\"width\";i:130;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4952;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(777,179,'_wp_attached_file','2022/08/8.jpg'),
(778,179,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:450;s:6:\"height\";i:300;s:4:\"file\";s:13:\"2022/08/8.jpg\";s:8:\"filesize\";i:35193;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"8-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18070;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8482;}s:25:\"colormag-highlighted-post\";a:5:{s:4:\"file\";s:13:\"8-392x272.jpg\";s:5:\"width\";i:392;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27480;}s:29:\"colormag-featured-post-medium\";a:5:{s:4:\"file\";s:13:\"8-390x205.jpg\";s:5:\"width\";i:390;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23533;}s:28:\"colormag-featured-post-small\";a:5:{s:4:\"file\";s:12:\"8-130x90.jpg\";s:5:\"width\";i:130;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5270;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(783,182,'_wp_attached_file','2022/08/cropped-banner-1.jpg'),
(784,182,'_wp_attachment_context','custom-header'),
(785,182,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1500;s:6:\"height\";i:426;s:4:\"file\";s:28:\"2022/08/cropped-banner-1.jpg\";s:8:\"filesize\";i:84557;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"cropped-banner-1-300x85.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9476;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"cropped-banner-1-1024x291.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50518;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"cropped-banner-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6187;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"cropped-banner-1-768x218.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:218;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34178;}s:25:\"colormag-highlighted-post\";a:5:{s:4:\"file\";s:28:\"cropped-banner-1-392x272.jpg\";s:5:\"width\";i:392;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19448;}s:29:\"colormag-featured-post-medium\";a:5:{s:4:\"file\";s:28:\"cropped-banner-1-390x205.jpg\";s:5:\"width\";i:390;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18625;}s:28:\"colormag-featured-post-small\";a:5:{s:4:\"file\";s:27:\"cropped-banner-1-130x90.jpg\";s:5:\"width\";i:130;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4829;}s:23:\"colormag-featured-image\";a:5:{s:4:\"file\";s:28:\"cropped-banner-1-800x426.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47549;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:17:\"attachment_parent\";i:127;}'),
(786,182,'_wp_attachment_custom_header_last_used_colormag','1661158028'),
(787,182,'_wp_attachment_is_custom_header','colormag'),
(793,186,'_wp_attached_file','2022/08/1093340161.gif'),
(794,186,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:356;s:6:\"height\";i:345;s:4:\"file\";s:22:\"2022/08/1093340161.gif\";s:8:\"filesize\";i:8568;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"1093340161-300x291.gif\";s:5:\"width\";i:300;s:6:\"height\";i:291;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:10297;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"1093340161-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:4868;}s:25:\"colormag-highlighted-post\";a:5:{s:4:\"file\";s:22:\"1093340161-356x272.gif\";s:5:\"width\";i:356;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:7272;}s:29:\"colormag-featured-post-medium\";a:5:{s:4:\"file\";s:22:\"1093340161-356x205.gif\";s:5:\"width\";i:356;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:6151;}s:28:\"colormag-featured-post-small\";a:5:{s:4:\"file\";s:21:\"1093340161-130x90.gif\";s:5:\"width\";i:130;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:3495;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(795,187,'_wp_attached_file','2022/08/cropped-1093340161.gif'),
(796,187,'_wp_attachment_context','custom-logo'),
(797,187,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:345;s:6:\"height\";i:345;s:4:\"file\";s:30:\"2022/08/cropped-1093340161.gif\";s:8:\"filesize\";i:8504;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"cropped-1093340161-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:10583;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"cropped-1093340161-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:4790;}s:25:\"colormag-highlighted-post\";a:5:{s:4:\"file\";s:30:\"cropped-1093340161-345x272.gif\";s:5:\"width\";i:345;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:7249;}s:29:\"colormag-featured-post-medium\";a:5:{s:4:\"file\";s:30:\"cropped-1093340161-345x205.gif\";s:5:\"width\";i:345;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:6135;}s:28:\"colormag-featured-post-small\";a:5:{s:4:\"file\";s:29:\"cropped-1093340161-130x90.gif\";s:5:\"width\";i:130;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:3497;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(800,188,'_menu_item_type','custom'),
(801,188,'_menu_item_menu_item_parent','160'),
(802,188,'_menu_item_object_id','188'),
(803,188,'_menu_item_object','custom'),
(804,188,'_menu_item_target',''),
(805,188,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(806,188,'_menu_item_xfn',''),
(807,188,'_menu_item_url','#'),
(845,196,'_wp_attached_file','2022/08/ผอ..jpg'),
(846,196,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1773;s:6:\"height\";i:2364;s:4:\"file\";s:19:\"2022/08/ผอ..jpg\";s:8:\"filesize\";i:366415;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"ผอ.-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12853;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"ผอ.-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81779;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"ผอ.-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5638;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"ผอ.-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81779;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"ผอ.-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:148202;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:21:\"ผอ.-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:223672;}s:25:\"colormag-highlighted-post\";a:5:{s:4:\"file\";s:19:\"ผอ.-392x272.jpg\";s:5:\"width\";i:392;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14659;}s:29:\"colormag-featured-post-medium\";a:5:{s:4:\"file\";s:19:\"ผอ.-390x205.jpg\";s:5:\"width\";i:390;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11117;}s:28:\"colormag-featured-post-small\";a:5:{s:4:\"file\";s:18:\"ผอ.-130x90.jpg\";s:5:\"width\";i:130;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3412;}s:23:\"colormag-featured-image\";a:5:{s:4:\"file\";s:19:\"ผอ.-800x445.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32240;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(847,197,'_edit_lock','1724642985:1'),
(848,197,'_edit_last','1'),
(849,199,'_menu_item_type','custom'),
(850,199,'_menu_item_menu_item_parent','160'),
(851,199,'_menu_item_object_id','199'),
(852,199,'_menu_item_object','custom'),
(853,199,'_menu_item_target',''),
(854,199,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(855,199,'_menu_item_xfn',''),
(856,199,'_menu_item_url','http://ank.ssk.in.th/wp-content/uploads/2024/08/ประวัติโรงเรียนโรงเรียนอนุบาลโนนคูณ.pdf'),
(858,200,'_edit_lock','1724394199:1'),
(859,200,'_edit_last','1'),
(860,202,'_menu_item_type','custom'),
(861,202,'_menu_item_menu_item_parent','160'),
(862,202,'_menu_item_object_id','202'),
(863,202,'_menu_item_object','custom'),
(864,202,'_menu_item_target',''),
(865,202,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(866,202,'_menu_item_xfn',''),
(867,202,'_menu_item_url','http://ank.ssk.in.th/wp-content/uploads/2024/08/02.-ข้อมูลผู้บริหาร-1.pdf'),
(914,208,'_menu_item_type','custom'),
(915,208,'_menu_item_menu_item_parent','0'),
(916,208,'_menu_item_object_id','208'),
(917,208,'_menu_item_object','custom'),
(918,208,'_menu_item_target',''),
(919,208,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(920,208,'_menu_item_xfn',''),
(921,208,'_menu_item_url','#'),
(923,209,'_menu_item_type','custom'),
(924,209,'_menu_item_menu_item_parent','208'),
(925,209,'_menu_item_object_id','209'),
(926,209,'_menu_item_object','custom'),
(927,209,'_menu_item_target',''),
(928,209,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(929,209,'_menu_item_xfn',''),
(930,209,'_menu_item_url','#'),
(932,210,'_menu_item_type','custom'),
(933,210,'_menu_item_menu_item_parent','208'),
(934,210,'_menu_item_object_id','210'),
(935,210,'_menu_item_object','custom'),
(936,210,'_menu_item_target',''),
(937,210,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(938,210,'_menu_item_xfn',''),
(939,210,'_menu_item_url','#'),
(941,211,'_menu_item_type','custom'),
(942,211,'_menu_item_menu_item_parent','208'),
(943,211,'_menu_item_object_id','211'),
(944,211,'_menu_item_object','custom'),
(945,211,'_menu_item_target',''),
(946,211,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(947,211,'_menu_item_xfn',''),
(948,211,'_menu_item_url','#'),
(959,213,'_menu_item_type','custom'),
(960,213,'_menu_item_menu_item_parent','160'),
(961,213,'_menu_item_object_id','213'),
(962,213,'_menu_item_object','custom'),
(963,213,'_menu_item_target',''),
(964,213,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(965,213,'_menu_item_xfn',''),
(966,213,'_menu_item_url','#'),
(968,214,'_menu_item_type','custom'),
(969,214,'_menu_item_menu_item_parent','0'),
(970,214,'_menu_item_object_id','214'),
(971,214,'_menu_item_object','custom'),
(972,214,'_menu_item_target',''),
(973,214,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(974,214,'_menu_item_xfn',''),
(975,214,'_menu_item_url','#'),
(977,215,'_menu_item_type','custom'),
(978,215,'_menu_item_menu_item_parent','214'),
(979,215,'_menu_item_object_id','215'),
(980,215,'_menu_item_object','custom'),
(981,215,'_menu_item_target',''),
(982,215,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(983,215,'_menu_item_xfn',''),
(984,215,'_menu_item_url','#'),
(986,216,'_menu_item_type','custom'),
(987,216,'_menu_item_menu_item_parent','214'),
(988,216,'_menu_item_object_id','216'),
(989,216,'_menu_item_object','custom'),
(990,216,'_menu_item_target',''),
(991,216,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(992,216,'_menu_item_xfn',''),
(993,216,'_menu_item_url','#'),
(995,217,'_menu_item_type','custom'),
(996,217,'_menu_item_menu_item_parent','214'),
(997,217,'_menu_item_object_id','217'),
(998,217,'_menu_item_object','custom'),
(999,217,'_menu_item_target',''),
(1000,217,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1001,217,'_menu_item_xfn',''),
(1002,217,'_menu_item_url','#'),
(1004,218,'_menu_item_type','custom'),
(1005,218,'_menu_item_menu_item_parent','0'),
(1006,218,'_menu_item_object_id','218'),
(1007,218,'_menu_item_object','custom'),
(1008,218,'_menu_item_target',''),
(1009,218,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1010,218,'_menu_item_xfn',''),
(1011,218,'_menu_item_url','#'),
(1013,219,'_menu_item_type','custom'),
(1014,219,'_menu_item_menu_item_parent','218'),
(1015,219,'_menu_item_object_id','219'),
(1016,219,'_menu_item_object','custom'),
(1017,219,'_menu_item_target',''),
(1018,219,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1019,219,'_menu_item_xfn',''),
(1020,219,'_menu_item_url','http://www.sisaketedu1.go.th/'),
(1022,220,'_menu_item_type','custom'),
(1023,220,'_menu_item_menu_item_parent','218'),
(1024,220,'_menu_item_object_id','220'),
(1025,220,'_menu_item_object','custom'),
(1026,220,'_menu_item_target',''),
(1027,220,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1028,220,'_menu_item_xfn',''),
(1029,220,'_menu_item_url','https://www.obec.go.th/'),
(1031,221,'_menu_item_type','custom'),
(1032,221,'_menu_item_menu_item_parent','218'),
(1033,221,'_menu_item_object_id','221'),
(1034,221,'_menu_item_object','custom'),
(1035,221,'_menu_item_target',''),
(1036,221,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1037,221,'_menu_item_xfn',''),
(1038,221,'_menu_item_url','https://www.moe.go.th/'),
(1040,222,'_menu_item_type','custom'),
(1041,222,'_menu_item_menu_item_parent','218'),
(1042,222,'_menu_item_object_id','222'),
(1043,222,'_menu_item_object','custom'),
(1044,222,'_menu_item_target',''),
(1045,222,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1046,222,'_menu_item_xfn',''),
(1047,222,'_menu_item_url','http://data.ssk.in.th/tb/'),
(1049,223,'_menu_item_type','custom'),
(1050,223,'_menu_item_menu_item_parent','218'),
(1051,223,'_menu_item_object_id','223'),
(1052,223,'_menu_item_object','custom'),
(1053,223,'_menu_item_target',''),
(1054,223,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1055,223,'_menu_item_xfn',''),
(1056,223,'_menu_item_url','#'),
(1058,224,'_menu_item_type','custom'),
(1059,224,'_menu_item_menu_item_parent','218'),
(1060,224,'_menu_item_object_id','224'),
(1061,224,'_menu_item_object','custom'),
(1062,224,'_menu_item_target',''),
(1063,224,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1064,224,'_menu_item_xfn',''),
(1065,224,'_menu_item_url','#'),
(1067,225,'_menu_item_type','custom'),
(1068,225,'_menu_item_menu_item_parent','218'),
(1069,225,'_menu_item_object_id','225'),
(1070,225,'_menu_item_object','custom'),
(1071,225,'_menu_item_target',''),
(1072,225,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1073,225,'_menu_item_xfn',''),
(1074,225,'_menu_item_url','#'),
(1076,226,'_menu_item_type','custom'),
(1077,226,'_menu_item_menu_item_parent','218'),
(1078,226,'_menu_item_object_id','226'),
(1079,226,'_menu_item_object','custom'),
(1080,226,'_menu_item_target',''),
(1081,226,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1082,226,'_menu_item_xfn',''),
(1083,226,'_menu_item_url','#'),
(1085,227,'_menu_item_type','custom'),
(1086,227,'_menu_item_menu_item_parent','0'),
(1087,227,'_menu_item_object_id','227'),
(1088,227,'_menu_item_object','custom'),
(1089,227,'_menu_item_target',''),
(1090,227,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1091,227,'_menu_item_xfn',''),
(1092,227,'_menu_item_url','#'),
(1094,228,'_menu_item_type','custom'),
(1095,228,'_menu_item_menu_item_parent','227'),
(1096,228,'_menu_item_object_id','228'),
(1097,228,'_menu_item_object','custom'),
(1098,228,'_menu_item_target',''),
(1099,228,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1100,228,'_menu_item_xfn',''),
(1101,228,'_menu_item_url','https://code.org/'),
(1103,229,'_menu_item_type','custom'),
(1104,229,'_menu_item_menu_item_parent','227'),
(1105,229,'_menu_item_object_id','229'),
(1106,229,'_menu_item_object','custom'),
(1107,229,'_menu_item_target',''),
(1108,229,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1109,229,'_menu_item_xfn',''),
(1110,229,'_menu_item_url','https://www.typingstudy.com/th-thai_kedmanee-3/lesson/1'),
(1112,230,'_menu_item_type','custom'),
(1113,230,'_menu_item_menu_item_parent','227'),
(1114,230,'_menu_item_object_id','230'),
(1115,230,'_menu_item_object','custom'),
(1116,230,'_menu_item_target',''),
(1117,230,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1118,230,'_menu_item_xfn',''),
(1119,230,'_menu_item_url','https://classroom.google.com/h'),
(1121,231,'_menu_item_type','custom'),
(1122,231,'_menu_item_menu_item_parent','227'),
(1123,231,'_menu_item_object_id','231'),
(1124,231,'_menu_item_object','custom'),
(1125,231,'_menu_item_target',''),
(1126,231,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1127,231,'_menu_item_xfn',''),
(1128,231,'_menu_item_url','https://www.youtube.com/'),
(1130,232,'_menu_item_type','custom'),
(1131,232,'_menu_item_menu_item_parent','227'),
(1132,232,'_menu_item_object_id','232'),
(1133,232,'_menu_item_object','custom'),
(1134,232,'_menu_item_target',''),
(1135,232,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1136,232,'_menu_item_xfn',''),
(1137,232,'_menu_item_url','https://th.y8.com/'),
(1139,233,'_menu_item_type','custom'),
(1140,233,'_menu_item_menu_item_parent','0'),
(1141,233,'_menu_item_object_id','233'),
(1142,233,'_menu_item_object','custom'),
(1143,233,'_menu_item_target',''),
(1144,233,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1145,233,'_menu_item_xfn',''),
(1146,233,'_menu_item_url','#'),
(1149,235,'_wp_attached_file','2022/08/cropped-banner.jpg'),
(1150,235,'_wp_attachment_context','custom-header'),
(1151,235,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1500;s:6:\"height\";i:323;s:4:\"file\";s:26:\"2022/08/cropped-banner.jpg\";s:8:\"filesize\";i:73056;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"cropped-banner-300x65.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8032;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"cropped-banner-1024x221.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:221;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42423;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"cropped-banner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6352;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"cropped-banner-768x165.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:165;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29040;}s:25:\"colormag-highlighted-post\";a:5:{s:4:\"file\";s:26:\"cropped-banner-392x272.jpg\";s:5:\"width\";i:392;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17449;}s:29:\"colormag-featured-post-medium\";a:5:{s:4:\"file\";s:26:\"cropped-banner-390x205.jpg\";s:5:\"width\";i:390;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16652;}s:28:\"colormag-featured-post-small\";a:5:{s:4:\"file\";s:25:\"cropped-banner-130x90.jpg\";s:5:\"width\";i:130;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4377;}s:23:\"colormag-featured-image\";a:5:{s:4:\"file\";s:26:\"cropped-banner-800x323.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:323;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41754;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:17:\"attachment_parent\";i:65;}'),
(1152,235,'_wp_attachment_custom_header_last_used_colormag','1661158073'),
(1153,235,'_wp_attachment_is_custom_header','colormag'),
(1155,237,'_wp_attached_file','2024/08/Logo-ank-removebg-preview.png'),
(1156,237,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:577;s:6:\"height\";i:433;s:4:\"file\";s:37:\"2024/08/Logo-ank-removebg-preview.png\";s:8:\"filesize\";i:116769;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Logo-ank-removebg-preview-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35151;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Logo-ank-removebg-preview-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17969;}s:25:\"colormag-highlighted-post\";a:5:{s:4:\"file\";s:37:\"Logo-ank-removebg-preview-392x272.png\";s:5:\"width\";i:392;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53931;}s:29:\"colormag-featured-post-medium\";a:5:{s:4:\"file\";s:37:\"Logo-ank-removebg-preview-390x205.png\";s:5:\"width\";i:390;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51679;}s:28:\"colormag-featured-post-small\";a:5:{s:4:\"file\";s:36:\"Logo-ank-removebg-preview-130x90.png\";s:5:\"width\";i:130;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8893;}s:21:\"colormag-default-news\";a:5:{s:4:\"file\";s:37:\"Logo-ank-removebg-preview-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17969;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1170,158,'_wp_old_date','2022-08-22'),
(1171,160,'_wp_old_date','2022-08-22'),
(1172,199,'_wp_old_date','2022-08-22'),
(1173,161,'_wp_old_date','2022-08-22'),
(1174,188,'_wp_old_date','2022-08-22'),
(1175,202,'_wp_old_date','2022-08-22'),
(1183,208,'_wp_old_date','2022-08-22'),
(1184,209,'_wp_old_date','2022-08-22'),
(1185,210,'_wp_old_date','2022-08-22'),
(1186,211,'_wp_old_date','2022-08-22'),
(1188,213,'_wp_old_date','2022-08-22'),
(1189,214,'_wp_old_date','2022-08-22'),
(1190,215,'_wp_old_date','2022-08-22'),
(1191,216,'_wp_old_date','2022-08-22'),
(1192,217,'_wp_old_date','2022-08-22'),
(1193,218,'_wp_old_date','2022-08-22'),
(1194,219,'_wp_old_date','2022-08-22'),
(1195,220,'_wp_old_date','2022-08-22'),
(1196,221,'_wp_old_date','2022-08-22'),
(1197,222,'_wp_old_date','2022-08-22'),
(1198,223,'_wp_old_date','2022-08-22'),
(1199,224,'_wp_old_date','2022-08-22'),
(1200,225,'_wp_old_date','2022-08-22'),
(1201,226,'_wp_old_date','2022-08-22'),
(1202,227,'_wp_old_date','2022-08-22'),
(1203,228,'_wp_old_date','2022-08-22'),
(1204,229,'_wp_old_date','2022-08-22'),
(1205,230,'_wp_old_date','2022-08-22'),
(1206,231,'_wp_old_date','2022-08-22'),
(1207,232,'_wp_old_date','2022-08-22'),
(1208,233,'_wp_old_date','2022-08-22'),
(1209,244,'_menu_item_type','custom'),
(1210,244,'_menu_item_menu_item_parent','0'),
(1211,244,'_menu_item_object_id','244'),
(1212,244,'_menu_item_object','custom'),
(1213,244,'_menu_item_target',''),
(1214,244,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1215,244,'_menu_item_xfn',''),
(1216,244,'_menu_item_url','#'),
(1217,244,'_menu_item_orphaned','1722925398'),
(1218,245,'_menu_item_type','custom'),
(1219,245,'_menu_item_menu_item_parent','0'),
(1220,245,'_menu_item_object_id','245'),
(1221,245,'_menu_item_object','custom'),
(1222,245,'_menu_item_target',''),
(1223,245,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1224,245,'_menu_item_xfn',''),
(1225,245,'_menu_item_url','#'),
(1226,245,'_menu_item_orphaned','1722925425'),
(1232,187,'_oembed_c2d549cc386b9af6abde745c709c6987','{{unknown}}'),
(1239,158,'_wp_old_date','2024-08-06'),
(1240,199,'_wp_old_date','2024-08-06'),
(1241,161,'_wp_old_date','2024-08-06'),
(1242,188,'_wp_old_date','2024-08-06'),
(1243,202,'_wp_old_date','2024-08-06'),
(1262,160,'_wp_old_date','2024-08-06'),
(1266,219,'_wp_old_date','2024-08-06'),
(1267,220,'_wp_old_date','2024-08-06'),
(1268,221,'_wp_old_date','2024-08-06'),
(1269,222,'_wp_old_date','2024-08-06'),
(1283,267,'_wp_attached_file','2022/08/cropped-cropped-banner.jpg'),
(1284,267,'_wp_attachment_context','custom-logo'),
(1285,267,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1498;s:6:\"height\";i:318;s:4:\"file\";s:34:\"2022/08/cropped-cropped-banner.jpg\";s:8:\"filesize\";i:72072;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"cropped-cropped-banner-300x64.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:64;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7562;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"cropped-cropped-banner-1024x217.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:217;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42471;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"cropped-cropped-banner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6130;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"cropped-cropped-banner-768x163.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:163;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29338;}s:25:\"colormag-highlighted-post\";a:5:{s:4:\"file\";s:34:\"cropped-cropped-banner-392x272.jpg\";s:5:\"width\";i:392;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17435;}s:29:\"colormag-featured-post-medium\";a:5:{s:4:\"file\";s:34:\"cropped-cropped-banner-390x205.jpg\";s:5:\"width\";i:390;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16180;}s:28:\"colormag-featured-post-small\";a:5:{s:4:\"file\";s:33:\"cropped-cropped-banner-130x90.jpg\";s:5:\"width\";i:130;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4323;}s:23:\"colormag-featured-image\";a:5:{s:4:\"file\";s:34:\"cropped-cropped-banner-800x318.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:318;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41428;}s:21:\"colormag-default-news\";a:5:{s:4:\"file\";s:34:\"cropped-cropped-banner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6130;}s:29:\"colormag-featured-image-large\";a:5:{s:4:\"file\";s:35:\"cropped-cropped-banner-1400x318.jpg\";s:5:\"width\";i:1400;s:6:\"height\";i:318;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70127;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1292,272,'_wp_attached_file','2024/08/01.-โครงสร้าง.pdf'),
(1293,272,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:2104335;}'),
(1294,273,'_wp_attached_file','2024/08/02.-ข้อมูลผู้บริหาร.pdf'),
(1295,273,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:3212666;}'),
(1298,275,'_wp_attached_file','2024/08/04.-ข้อมูลการติดต่อ.pdf'),
(1299,275,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:8418447;}'),
(1300,276,'_wp_attached_file','2024/08/11.-คู่มือหรือแนวทางการให้บริการสําหรับผู้รับบริการหรือผู้มาติดต่อ.pdf'),
(1301,276,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:8484307;}'),
(1302,277,'_wp_attached_file','2024/08/13.-E–Service.pdf'),
(1303,277,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:791970;}'),
(1304,278,'_wp_attached_file','2024/08/20.-ประมวลจริยธรรมสําหรับเจ้าหน้าที่ของรัฐ.pdf'),
(1305,278,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:74673;}'),
(1306,279,'_wp_attached_file','2024/08/22.-แนวปฏิบัติการจัดการเรื่องร้องเรียนการทุจริตและประพฤติมิชอบ.pdf'),
(1307,279,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:453329;}'),
(1308,280,'_wp_attached_file','2024/08/23.-ช่องทางแจ้งเรื่องร้องเรียนการทุจริตและประพฤติมิชอบ.pdf'),
(1309,280,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:653398;}'),
(1310,281,'_wp_attached_file','2024/08/24.-ข้อมูลสถิติเรื่องร้องเรียนการทุจริตและประพฤติมิชอบ.pdf'),
(1311,281,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:172385;}'),
(1312,282,'_wp_attached_file','2024/08/25.-การเปิดโอกาสให้เกิดการมีส่วนร่วม.pdf'),
(1313,282,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:5723954;}'),
(1314,283,'_wp_attached_file','2024/08/26.-ประกาศเจตนารมณ์นโยบาย-No-GiftPolicy-จากการปฏิบัติหน้าที่.pdf'),
(1315,283,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:458793;}'),
(1316,284,'_wp_attached_file','2024/08/27.-การสร้างวัฒนธรรมNo-Gift-Policy.pdf'),
(1317,284,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:1223878;}'),
(1318,285,'_wp_attached_file','2024/08/28.-รายงานผลตามนโยบาย-No-GiftPolicy.pdf'),
(1319,285,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:334939;}'),
(1320,286,'_wp_attached_file','2024/08/29.-รายงานการรับทรัพย์สินหรือประโยชน์อื่นใดโดยธรรมจรรยา.pdf'),
(1321,286,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:1478730;}'),
(1322,287,'_wp_attached_file','2024/08/wordpress.pdf'),
(1323,287,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:3362513;}'),
(1324,288,'_wp_attached_file','2024/08/02.-ข้อมูลผู้บริหาร-1.pdf'),
(1325,288,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:3212666;}'),
(1353,300,'_wp_attached_file','2024/08/07.-แผนยุทธศาสตร์หรือแผนพัฒนาหน่วยงาน.pdf'),
(1354,300,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:1709893;}'),
(1355,301,'_wp_attached_file','2024/08/08.-แผนและความก้าวหน้าในการดําเนินงานและการใช้งบประมาณประจําปี.pdf'),
(1356,301,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:2815646;}'),
(1357,302,'_wp_attached_file','2024/08/09.-รายงานผลการดําเนินงานประจําปี.pdf'),
(1358,302,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:3031585;}'),
(1391,317,'wp_pattern_sync_status','unsynced'),
(1406,267,'_oembed_949d8dea0ea2efc0ce0a4084412cc1a6','{{unknown}}'),
(1407,324,'_wp_attached_file','2024/08/IMG_5049.jpg'),
(1408,324,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:481;s:6:\"height\";i:641;s:4:\"file\";s:20:\"2024/08/IMG_5049.jpg\";s:8:\"filesize\";i:182614;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_5049-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23588;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_5049-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9146;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_5049-481x198.jpg\";s:5:\"width\";i:481;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46449;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1409,199,'_wp_old_date','2024-08-22'),
(1414,330,'_wp_attached_file','2022/08/IMG_3907.jpg'),
(1415,330,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:855;s:6:\"height\";i:641;s:4:\"file\";s:20:\"2022/08/IMG_3907.jpg\";s:8:\"filesize\";i:239863;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_3907-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22481;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_3907-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8427;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"IMG_3907-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118463;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_3907-855x198.jpg\";s:5:\"width\";i:855;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61489;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1423,339,'_wp_attached_file','2022/08/IMG_3907-1.jpg'),
(1424,339,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:855;s:6:\"height\";i:641;s:4:\"file\";s:22:\"2022/08/IMG_3907-1.jpg\";s:8:\"filesize\";i:239863;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"IMG_3907-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22481;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"IMG_3907-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8427;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"IMG_3907-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118463;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:22:\"IMG_3907-1-855x198.jpg\";s:5:\"width\";i:855;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61489;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1432,343,'_wp_attached_file','2024/08/IMG_5208.jpg'),
(1433,343,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:855;s:6:\"height\";i:641;s:4:\"file\";s:20:\"2024/08/IMG_5208.jpg\";s:8:\"filesize\";i:330036;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_5208-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27502;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_5208-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9430;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"IMG_5208-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:164002;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_5208-855x198.jpg\";s:5:\"width\";i:855;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76059;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1434,344,'_wp_attached_file','2024/08/cropped-IMG_5208-1.jpg'),
(1435,344,'_wp_attachment_context','custom-header'),
(1436,344,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:940;s:6:\"height\";i:329;s:4:\"file\";s:30:\"2024/08/cropped-IMG_5208-1.jpg\";s:8:\"filesize\";i:116819;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"cropped-IMG_5208-1-300x105.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:105;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14217;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"cropped-IMG_5208-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9645;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"cropped-IMG_5208-1-768x269.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:269;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73984;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:30:\"cropped-IMG_5208-1-940x198.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71407;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:17:\"attachment_parent\";i:343;}'),
(1437,344,'_wp_attachment_custom_header_last_used_twentyten','1724388823'),
(1438,344,'_wp_attachment_is_custom_header','twentyten'),
(1442,346,'_wp_attached_file','2024/08/cropped-cropped-IMG_5208-1.jpg'),
(1443,346,'_wp_attachment_context','custom-header'),
(1444,346,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:940;s:6:\"height\";i:198;s:4:\"file\";s:38:\"2024/08/cropped-cropped-IMG_5208-1.jpg\";s:8:\"filesize\";i:69657;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"cropped-cropped-IMG_5208-1-300x63.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:63;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8670;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"cropped-cropped-IMG_5208-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8188;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"cropped-cropped-IMG_5208-1-768x162.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:162;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44496;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:17:\"attachment_parent\";i:344;}'),
(1445,346,'_wp_attachment_custom_header_last_used_twentyten','1724388873'),
(1446,346,'_wp_attachment_is_custom_header','twentyten'),
(1454,349,'_edit_lock','1724400946:1'),
(1455,349,'_generateblocks_dynamic_css_version','1.9.1'),
(1456,350,'_wp_attached_file','2024/08/IMG_3907.jpg'),
(1457,350,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:855;s:6:\"height\";i:641;s:4:\"file\";s:20:\"2024/08/IMG_3907.jpg\";s:8:\"filesize\";i:239863;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_3907-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22481;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_3907-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8427;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"IMG_3907-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118463;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_3907-855x198.jpg\";s:5:\"width\";i:855;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61489;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1461,354,'_edit_lock','1724401056:1'),
(1462,355,'_wp_attached_file','2024/08/456044563_1150500889800519_3469159541631171774_n.jpg'),
(1463,355,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1477;s:6:\"height\";i:1108;s:4:\"file\";s:60:\"2024/08/456044563_1150500889800519_3469159541631171774_n.jpg\";s:8:\"filesize\";i:192837;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"456044563_1150500889800519_3469159541631171774_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20950;}s:5:\"large\";a:5:{s:4:\"file\";s:61:\"456044563_1150500889800519_3469159541631171774_n-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147900;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"456044563_1150500889800519_3469159541631171774_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8343;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:60:\"456044563_1150500889800519_3469159541631171774_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93526;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:60:\"456044563_1150500889800519_3469159541631171774_n-940x198.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48358;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1470,364,'_wp_attached_file','2024/08/34.-มาตรการส่งเสริมคุณธรรมและความโปร่งใสภายในหน่วยงาน.pdf'),
(1471,364,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:256476;}'),
(1472,365,'_wp_attached_file','2024/08/35.-รายงานผลการดําเนินการเพื่อส่งเสริมคุณธรรมและความโปร่งใสภายในหน่วยงาน.pdf'),
(1473,365,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:412679;}'),
(1474,366,'_wp_attached_file','2024/08/19.-รายงานผลการบริหารและพัฒนาทรัพยากรบุคคลประจําปี.pdf'),
(1475,366,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:7559526;}'),
(1476,367,'_wp_attached_file','2024/08/18.-แผนการบริหารและพัฒนาทรัพยากรบุคคล.pdf'),
(1477,367,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:286483;}'),
(1478,368,'_wp_attached_file','2024/08/17.-รายงานสรุปผลการจัดซื้อจัดจ้างหรือการจัดหาพัสดุประจําปี.pdf'),
(1479,368,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:165925;}'),
(1480,369,'_wp_attached_file','2024/08/16.-ความก้าวหน้าการจัดซื้อจัดจ้างหรือการจัดหาพัสดุ.pdf'),
(1481,369,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:45040;}'),
(1482,370,'_wp_attached_file','2024/08/14.-รายการการจัดซื้อจัดจ้างหรือการจัดหาพัสดุ.pdf'),
(1483,370,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:41828;}'),
(1484,371,'_wp_attached_file','2024/08/15.-ประกาศต่าง-ๆเกี่ยวกับการจัดซื้อจัดจ้างหรือการจัดหาพัสดุ.pdf'),
(1485,371,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:984769;}'),
(1486,372,'_wp_attached_file','2024/08/33.-รายงานผลการดําเนินการป้องกันการทุจริตประจําปี.pdf'),
(1487,372,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:646136;}'),
(1488,373,'_wp_attached_file','2024/08/32.-แผนปฏิบัติการป้องกันการทุจริต.pdf'),
(1489,373,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:624292;}'),
(1490,374,'_wp_attached_file','2024/08/21.-การขับเคลื่อนจริยธรรม.pdf'),
(1491,374,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:1356847;}'),
(1492,375,'_wp_attached_file','2024/08/12.-ข้อมูลสถิติการให้บริการ.pdf'),
(1493,375,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:919185;}'),
(1513,384,'_wp_attached_file','2024/08/05.-ข่าวประชาสัมพันธ์.pdf'),
(1514,384,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:182006;}'),
(1515,385,'_wp_attached_file','2024/08/06.-QA.pdf'),
(1516,385,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:144630;}'),
(1533,394,'_edit_lock','1724644745:1'),
(1534,394,'_oembed_55616d7593dd33745e1fc621af4a8b4c','{{unknown}}'),
(1537,397,'footnotes',''),
(1538,398,'_wp_attached_file','2024/08/ประวัติโรงเรียนโรงเรียนอนุบาลโนนคูณ.pdf'),
(1539,398,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:60276;}'),
(1540,199,'_wp_old_date','2024-08-23'),
(1543,400,'_wp_attached_file','2024/08/วิสัยทัศน์โรงเรียน.pdf'),
(1544,400,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:237622;}'),
(1545,161,'_wp_old_date','2024-08-22'),
(1548,402,'_wp_attached_file','2024/08/03.-อํานาจหน้าที่-1.pdf'),
(1549,402,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:128768;}'),
(1550,403,'_wp_attached_file','2024/08/10.-คู่มือหรือแนวทางการปฏิบัติงานของเจ้าหน้าที่.pdf'),
(1551,403,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:351145;}'),
(1552,404,'_wp_attached_file','2024/08/30.-การประเมินความเสี่ยงการทุจริตในประเด็นที่เกี่ยวข้องกับสินบน.pdf'),
(1553,404,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:1948608;}'),
(1554,405,'_wp_attached_file','2024/08/31.-รายงานผลการดําเนินการเพื่อจัดการความเสี่ยงการทุจริตและประพฤติมิชอบประจําปี.pdf'),
(1555,405,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:968867;}'),
(1571,412,'_edit_lock','1724732495:1'),
(1572,413,'_wp_attached_file','2024/08/457050057_1158052385712036_1271832281998934664_n.jpg'),
(1573,413,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:60:\"2024/08/457050057_1158052385712036_1271832281998934664_n.jpg\";s:8:\"filesize\";i:60096;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"457050057_1158052385712036_1271832281998934664_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17366;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"457050057_1158052385712036_1271832281998934664_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7599;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:60:\"457050057_1158052385712036_1271832281998934664_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62760;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:60:\"457050057_1158052385712036_1271832281998934664_n-940x198.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28521;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1574,414,'_wp_attached_file','2024/08/457086142_1158055472378394_6919257840095237910_n.jpg'),
(1575,414,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:60:\"2024/08/457086142_1158055472378394_6919257840095237910_n.jpg\";s:8:\"filesize\";i:229263;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"457086142_1158055472378394_6919257840095237910_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18298;}s:5:\"large\";a:5:{s:4:\"file\";s:61:\"457086142_1158055472378394_6919257840095237910_n-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113106;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"457086142_1158055472378394_6919257840095237910_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7707;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:60:\"457086142_1158055472378394_6919257840095237910_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73532;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:62:\"457086142_1158055472378394_6919257840095237910_n-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:202324;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:60:\"457086142_1158055472378394_6919257840095237910_n-940x198.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25347;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1576,415,'_wp_attached_file','2024/08/457103045_1158053952378546_2017232069349464678_n.jpg'),
(1577,415,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:60:\"2024/08/457103045_1158053952378546_2017232069349464678_n.jpg\";s:8:\"filesize\";i:363634;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"457103045_1158053952378546_2017232069349464678_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18907;}s:5:\"large\";a:5:{s:4:\"file\";s:61:\"457103045_1158053952378546_2017232069349464678_n-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154742;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"457103045_1158053952378546_2017232069349464678_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7561;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:60:\"457103045_1158053952378546_2017232069349464678_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92766;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:62:\"457103045_1158053952378546_2017232069349464678_n-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:288503;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:60:\"457103045_1158053952378546_2017232069349464678_n-940x198.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57025;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1578,416,'_wp_attached_file','2024/08/457135917_1158055582378383_1882074074804084603_n.jpg'),
(1579,416,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:60:\"2024/08/457135917_1158055582378383_1882074074804084603_n.jpg\";s:8:\"filesize\";i:212179;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"457135917_1158055582378383_1882074074804084603_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18950;}s:5:\"large\";a:5:{s:4:\"file\";s:61:\"457135917_1158055582378383_1882074074804084603_n-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105925;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"457135917_1158055582378383_1882074074804084603_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7798;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:60:\"457135917_1158055582378383_1882074074804084603_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70374;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:62:\"457135917_1158055582378383_1882074074804084603_n-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:188067;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:60:\"457135917_1158055582378383_1882074074804084603_n-940x198.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30844;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1580,417,'_wp_attached_file','2024/08/457144052_1158055619045046_2177853130911210115_n.jpg'),
(1581,417,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:60:\"2024/08/457144052_1158055619045046_2177853130911210115_n.jpg\";s:8:\"filesize\";i:181090;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"457144052_1158055619045046_2177853130911210115_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15093;}s:5:\"large\";a:5:{s:4:\"file\";s:61:\"457144052_1158055619045046_2177853130911210115_n-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87150;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"457144052_1158055619045046_2177853130911210115_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6752;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:60:\"457144052_1158055619045046_2177853130911210115_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56720;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:62:\"457144052_1158055619045046_2177853130911210115_n-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159816;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:60:\"457144052_1158055619045046_2177853130911210115_n-940x198.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21788;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1582,418,'_wp_attached_file','2024/08/457205887_1158055799045028_2539035665849888800_n.jpg'),
(1583,418,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:60:\"2024/08/457205887_1158055799045028_2539035665849888800_n.jpg\";s:8:\"filesize\";i:174616;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"457205887_1158055799045028_2539035665849888800_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14678;}s:5:\"large\";a:5:{s:4:\"file\";s:61:\"457205887_1158055799045028_2539035665849888800_n-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84396;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"457205887_1158055799045028_2539035665849888800_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6458;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:60:\"457205887_1158055799045028_2539035665849888800_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54953;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:62:\"457205887_1158055799045028_2539035665849888800_n-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154974;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:60:\"457205887_1158055799045028_2539035665849888800_n-940x198.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26767;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1584,419,'_wp_attached_file','2024/08/457297087_1158052949045313_4474356114551042580_n.jpg'),
(1585,419,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:60:\"2024/08/457297087_1158052949045313_4474356114551042580_n.jpg\";s:8:\"filesize\";i:56512;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"457297087_1158052949045313_4474356114551042580_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16231;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"457297087_1158052949045313_4474356114551042580_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7112;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:60:\"457297087_1158052949045313_4474356114551042580_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58709;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:60:\"457297087_1158052949045313_4474356114551042580_n-940x198.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26099;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1586,420,'_wp_attached_file','2024/08/457327433_1158055785711696_4054317702331054974_n.jpg'),
(1587,420,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:60:\"2024/08/457327433_1158055785711696_4054317702331054974_n.jpg\";s:8:\"filesize\";i:178434;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"457327433_1158055785711696_4054317702331054974_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15835;}s:5:\"large\";a:5:{s:4:\"file\";s:61:\"457327433_1158055785711696_4054317702331054974_n-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88391;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"457327433_1158055785711696_4054317702331054974_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7240;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:60:\"457327433_1158055785711696_4054317702331054974_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58207;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:62:\"457327433_1158055785711696_4054317702331054974_n-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160272;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:60:\"457327433_1158055785711696_4054317702331054974_n-940x198.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24587;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1588,421,'_wp_attached_file','2024/08/457150231_1158053099045298_5805883337294085059_n.jpg'),
(1589,421,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:60:\"2024/08/457150231_1158053099045298_5805883337294085059_n.jpg\";s:8:\"filesize\";i:98822;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"457150231_1158053099045298_5805883337294085059_n-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22781;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"457150231_1158053099045298_5805883337294085059_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8996;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:60:\"457150231_1158053099045298_5805883337294085059_n-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96968;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:60:\"457150231_1158053099045298_5805883337294085059_n-940x198.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51250;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1595,412,'_wp_old_slug','%e0%b9%82%e0%b8%84%e0%b8%a3%e0%b8%87%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%9e%e0%b8%b1%e0%b8%92%e0%b8%99%e0%b8%b2%e0%b8%81%e0%b8%a3%e0%b8%b0%e0%b8%9a%e0%b8%a7%e0%b8%99%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b9%80'),
(1597,412,'_generateblocks_dynamic_css_version','1.9.1'),
(1598,427,'_edit_lock','1724732289:1'),
(1599,427,'_oembed_f7653abb2049e7b56cbe3d725bf40731','{{unknown}}'),
(1600,428,'_wp_attached_file','2024/08/457196917_1158060895711185_8365916979118315743_n.jpg'),
(1601,428,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:4:\"file\";s:60:\"2024/08/457196917_1158060895711185_8365916979118315743_n.jpg\";s:8:\"filesize\";i:342412;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"457196917_1158060895711185_8365916979118315743_n-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19449;}s:5:\"large\";a:5:{s:4:\"file\";s:61:\"457196917_1158060895711185_8365916979118315743_n-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147856;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"457196917_1158060895711185_8365916979118315743_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7778;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:61:\"457196917_1158060895711185_8365916979118315743_n-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147856;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:62:\"457196917_1158060895711185_8365916979118315743_n-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:274200;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:60:\"457196917_1158060895711185_8365916979118315743_n-940x198.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29921;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1602,429,'_wp_attached_file','2024/08/457196917_1158060895711185_8365916979118315743_n-edited.jpg'),
(1603,429,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1024;s:6:\"height\";i:1365;s:4:\"file\";s:67:\"2024/08/457196917_1158060895711185_8365916979118315743_n-edited.jpg\";s:8:\"filesize\";i:203856;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:67:\"457196917_1158060895711185_8365916979118315743_n-edited-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17763;}s:5:\"large\";a:5:{s:4:\"file\";s:68:\"457196917_1158060895711185_8365916979118315743_n-edited-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122625;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:67:\"457196917_1158060895711185_8365916979118315743_n-edited-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7655;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:68:\"457196917_1158060895711185_8365916979118315743_n-edited-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122625;}s:14:\"post-thumbnail\";a:5:{s:4:\"file\";s:67:\"457196917_1158060895711185_8365916979118315743_n-edited-940x198.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28016;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:12:\"parent_image\";a:2:{s:13:\"attachment_id\";s:3:\"428\";s:4:\"file\";s:60:\"2024/08/457196917_1158060895711185_8365916979118315743_n.jpg\";}}'),
(1611,202,'_wp_old_date','2024-08-22'),
(1614,217,'_wp_old_date','2024-08-06'),
(1617,216,'_wp_old_date','2024-08-06'),
(1620,215,'_wp_old_date','2024-08-06'),
(1623,211,'_wp_old_date','2024-08-06'),
(1628,160,'_wp_old_date','2024-08-22'),
(1631,161,'_wp_old_date','2024-08-26'),
(1634,199,'_wp_old_date','2024-08-26'),
(1644,188,'_wp_old_date','2024-08-22'),
(1645,208,'_wp_old_date','2024-08-06'),
(1646,209,'_wp_old_date','2024-08-06'),
(1647,210,'_wp_old_date','2024-08-06'),
(1649,213,'_wp_old_date','2024-08-06'),
(1650,214,'_wp_old_date','2024-08-06'),
(1651,219,'_wp_old_date','2024-08-22'),
(1652,220,'_wp_old_date','2024-08-22'),
(1653,218,'_wp_old_date','2024-08-06'),
(1654,221,'_wp_old_date','2024-08-22'),
(1655,222,'_wp_old_date','2024-08-22'),
(1656,223,'_wp_old_date','2024-08-06'),
(1657,224,'_wp_old_date','2024-08-06'),
(1658,225,'_wp_old_date','2024-08-06'),
(1659,226,'_wp_old_date','2024-08-06'),
(1660,227,'_wp_old_date','2024-08-06'),
(1661,228,'_wp_old_date','2024-08-06'),
(1662,229,'_wp_old_date','2024-08-06'),
(1663,230,'_wp_old_date','2024-08-06'),
(1664,231,'_wp_old_date','2024-08-06'),
(1665,232,'_wp_old_date','2024-08-06'),
(1666,233,'_wp_old_date','2024-08-06'),
(1674,452,'_customize_changeset_uuid','ef20e138-d4b2-4129-b5af-11c8767f617c'),
(1676,455,'_menu_item_type','post_type'),
(1677,455,'_menu_item_menu_item_parent','208'),
(1678,455,'_menu_item_object_id','452'),
(1679,455,'_menu_item_object','page'),
(1680,455,'_menu_item_target',''),
(1681,455,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1682,455,'_menu_item_xfn',''),
(1683,455,'_menu_item_url','');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_posts`
--

DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT 0,
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  `post_password` varchar(255) NOT NULL DEFAULT '',
  `post_name` varchar(200) NOT NULL DEFAULT '',
  `to_ping` text NOT NULL,
  `pinged` text NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `guid` varchar(255) NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=459 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_posts`
--

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES
(5,1,'2022-07-22 07:54:48','2022-07-22 07:54:48','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-twentytwentytwo','','','2022-07-22 07:54:48','2022-07-22 07:54:48','',0,'http://ank.ssk.in.th/index.php/2022/07/22/wp-global-styles-twentytwentytwo/',0,'wp_global_styles','',0),
(45,1,'2022-08-04 14:35:45','2022-08-04 14:35:45','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-colormag','','','2022-08-04 14:35:45','2022-08-04 14:35:45','',0,'http://ank.ssk.in.th/index.php/2022/08/04/wp-global-styles-colormag/',0,'wp_global_styles','',0),
(65,1,'2022-08-04 14:53:33','2022-08-04 14:53:33','','banner','','inherit','','closed','','banner','','','2022-08-04 14:53:33','2022-08-04 14:53:33','',0,'http://ank.ssk.in.th/wp-content/uploads/2022/08/banner.jpg',0,'attachment','image/jpeg',0),
(127,1,'2022-08-04 16:05:00','2022-08-04 16:05:00','','banner-1','','inherit','','closed','','banner-1','','','2022-08-04 16:05:00','2022-08-04 16:05:00','',0,'http://ank.ssk.in.th/wp-content/uploads/2022/08/banner-1.jpg',0,'attachment','image/jpeg',0),
(137,1,'2022-08-21 10:00:57','2022-08-21 10:00:57','','เกียรติบัตรระดับชาติ สร้างเกมส์','','inherit','','closed','','%e0%b9%80%e0%b8%81%e0%b8%b5%e0%b8%a2%e0%b8%a3%e0%b8%95%e0%b8%b4%e0%b8%9a%e0%b8%b1%e0%b8%95%e0%b8%a3%e0%b8%a3%e0%b8%b0%e0%b8%94%e0%b8%b1%e0%b8%9a%e0%b8%8a%e0%b8%b2%e0%b8%95%e0%b8%b4-%e0%b8%aa%e0%b8%a3','','','2022-08-21 10:00:57','2022-08-21 10:00:57','',0,'http://ank.ssk.in.th/wp-content/uploads/2022/08/เกียรติบัตรระดับชาติ-สร้างเกมส์.pdf',0,'attachment','application/pdf',0),
(158,1,'2024-08-22 03:33:58','2022-08-22 02:57:03','','หน้าแรก','','publish','closed','closed','','%e0%b8%ab%e0%b8%99%e0%b9%89%e0%b8%b2%e0%b9%81%e0%b8%a3%e0%b8%81','','','2024-08-22 03:33:58','2024-08-22 03:33:58','',0,'http://ank.ssk.in.th/?p=158',1,'nav_menu_item','',0),
(160,1,'2024-08-27 06:25:29','2022-08-22 02:57:04','','ข้อมูลโรงเรียน','','publish','closed','closed','','%e0%b8%82%e0%b9%89%e0%b8%ad%e0%b8%a1%e0%b8%b9%e0%b8%a5%e0%b8%9e%e0%b8%b7%e0%b9%89%e0%b8%99%e0%b8%90%e0%b8%b2%e0%b8%99%e0%b9%82%e0%b8%a3%e0%b8%87%e0%b9%80%e0%b8%a3%e0%b8%b5%e0%b8%a2%e0%b8%99','','','2024-08-27 06:25:29','2024-08-27 06:25:29','',0,'http://ank.ssk.in.th/?p=160',2,'nav_menu_item','',0),
(161,1,'2024-08-27 06:32:11','2022-08-22 02:57:04','','ประวัติโรงเรียน','','publish','closed','closed','','%e0%b8%9b%e0%b8%a3%e0%b8%b0%e0%b8%a7%e0%b8%b1%e0%b8%95%e0%b8%b4%e0%b9%82%e0%b8%a3%e0%b8%87%e0%b9%80%e0%b8%a3%e0%b8%b5%e0%b8%a2%e0%b8%99','','','2024-08-27 06:32:11','2024-08-27 06:32:11','',0,'http://ank.ssk.in.th/?p=161',4,'nav_menu_item','',0),
(170,1,'2022-08-22 03:08:54','2022-08-22 03:08:54','','1561433182_7','','inherit','','closed','','1561433182_7','','','2022-08-22 03:08:54','2022-08-22 03:08:54','',0,'http://ank.ssk.in.th/wp-content/uploads/2022/08/1561433182_7.jpg',0,'attachment','image/jpeg',0),
(173,1,'2022-08-22 04:22:53','2022-08-22 04:22:53','','1','','inherit','','closed','','1','','','2022-08-22 04:22:53','2022-08-22 04:22:53','',0,'http://ank.ssk.in.th/wp-content/uploads/2022/08/1.jpg',0,'attachment','image/jpeg',0),
(174,1,'2022-08-22 04:22:54','2022-08-22 04:22:54','','2','','inherit','','closed','','2','','','2022-08-22 04:22:54','2022-08-22 04:22:54','',0,'http://ank.ssk.in.th/wp-content/uploads/2022/08/2.jpg',0,'attachment','image/jpeg',0),
(175,1,'2022-08-22 04:22:55','2022-08-22 04:22:55','','3','','inherit','','closed','','3','','','2022-08-22 04:22:55','2022-08-22 04:22:55','',0,'http://ank.ssk.in.th/wp-content/uploads/2022/08/3.jpg',0,'attachment','image/jpeg',0),
(176,1,'2022-08-22 04:22:55','2022-08-22 04:22:55','','5','','inherit','','closed','','5','','','2022-08-22 04:22:55','2022-08-22 04:22:55','',0,'http://ank.ssk.in.th/wp-content/uploads/2022/08/5.jpg',0,'attachment','image/jpeg',0),
(177,1,'2022-08-22 04:22:55','2022-08-22 04:22:55','','6','','inherit','','closed','','6','','','2022-08-22 04:22:55','2022-08-22 04:22:55','',0,'http://ank.ssk.in.th/wp-content/uploads/2022/08/6.jpg',0,'attachment','image/jpeg',0),
(178,1,'2022-08-22 04:22:56','2022-08-22 04:22:56','','7','','inherit','','closed','','7','','','2022-08-22 04:22:56','2022-08-22 04:22:56','',0,'http://ank.ssk.in.th/wp-content/uploads/2022/08/7.jpg',0,'attachment','image/jpeg',0),
(179,1,'2022-08-22 04:22:56','2022-08-22 04:22:56','','8','','inherit','','closed','','8','','','2022-08-22 04:22:56','2022-08-22 04:22:56','',0,'http://ank.ssk.in.th/wp-content/uploads/2022/08/8.jpg',0,'attachment','image/jpeg',0),
(182,1,'2022-08-22 04:48:59','2022-08-22 04:48:59','','cropped-banner-1.jpg','','inherit','','closed','','cropped-banner-1-jpg','','','2022-08-22 04:48:59','2022-08-22 04:48:59','',0,'http://ank.ssk.in.th/wp-content/uploads/2022/08/cropped-banner-1.jpg',0,'attachment','image/jpeg',0),
(186,1,'2022-08-22 04:52:59','2022-08-22 04:52:59','','1093340161','','inherit','','closed','','1093340161','','','2022-08-22 04:52:59','2022-08-22 04:52:59','',0,'http://ank.ssk.in.th/wp-content/uploads/2022/08/1093340161.gif',0,'attachment','image/gif',0),
(187,1,'2022-08-22 04:53:07','2022-08-22 04:53:07','http://web085.ssk.in.th/wp-content/uploads/2022/08/cropped-1093340161.gif','cropped-1093340161.gif','','inherit','','closed','','cropped-1093340161-gif','','','2022-08-22 04:53:07','2022-08-22 04:53:07','',0,'http://ank.ssk.in.th/wp-content/uploads/2022/08/cropped-1093340161.gif',0,'attachment','image/gif',0),
(188,1,'2024-08-27 06:32:11','2022-08-22 05:05:07','','กรรมการสถานศึกษา','','publish','closed','closed','','%e0%b8%82%e0%b9%89%e0%b8%ad%e0%b8%a1%e0%b8%b9%e0%b8%a5%e0%b8%81%e0%b8%a3%e0%b8%a3%e0%b8%a1%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%aa%e0%b8%96%e0%b8%b2%e0%b8%99%e0%b8%a8%e0%b8%b6%e0%b8%81%e0%b8%a9%e0%b8%b2','','','2024-08-27 06:32:11','2024-08-27 06:32:11','',0,'http://ank.ssk.in.th/?p=188',6,'nav_menu_item','',0),
(196,1,'2022-08-22 06:38:13','2022-08-22 06:38:13','','ผอ.','','inherit','','closed','','%e0%b8%9c%e0%b8%ad','','','2022-08-22 06:38:13','2022-08-22 06:38:13','',0,'http://ank.ssk.in.th/wp-content/uploads/2022/08/ผอ..jpg',0,'attachment','image/jpeg',0),
(197,1,'2024-08-23 04:26:14','0000-00-00 00:00:00','<!-- wp:paragraph -->\n<p><img src=\"https://data.bopp-obec.info/emis/pic_school/1033530665.jpg\" width=\"104\" height=\"105\"><br>ตราสัญลักษณ์&nbsp;โรงเรียนอนุบาลโนนคูณ (โนนค้อวิทยาคาร)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:table {\"hasFixedLayout\":false} -->\n<figure class=\"wp-block-table\"><table><tbody><tr><td>รหัสโรงเรียน 10 หลัก :</td><td>&nbsp;&nbsp;1033530665</td></tr><tr><td>รหัส Smis 8 หลัก :</td><td>&nbsp; 33010155</td></tr><tr><td>รหัส Obec 6 หลัก :</td><td>&nbsp;&nbsp;530665</td></tr><tr><td>ชื่อสถานศึกษา(ไทย) :</td><td>&nbsp;&nbsp;อนุบาลโนนคูณ (โนนค้อวิทยาคาร)</td></tr><tr><td>ชื่อสถานศึกษา(อังกฤษ) :</td><td>&nbsp;&nbsp;anuban nonkhun(nonkhowittayakhan)</td></tr><tr><td>ที่อยู่ :</td><td>&nbsp;&nbsp;หมู่ที่ &nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;บ้านบ้านโนนค้อ</td></tr><tr><td>ตำบล :</td><td>&nbsp;&nbsp;โนนค้อ</td></tr><tr><td>อำเภอ :</td><td>&nbsp;&nbsp;โนนคูณ</td></tr><tr><td>จังหวัด :</td><td>&nbsp;&nbsp;ศรีสะเกษ</td></tr><tr><td>รหัสไปรษณีย์ :</td><td>&nbsp;&nbsp;33250</td></tr><tr><td>โทรศัพท์ :</td><td>&nbsp;&nbsp;0831294412</td></tr><tr><td>โทรสาร :</td><td>&nbsp;&nbsp;-</td></tr><tr><td>ระดับที่เปิดสอน :</td><td>&nbsp;อนุบาล-มัธยมศึกษาตอนต้น</td></tr><tr><td>วัน-เดือน-ปี ก่อตั้ง :</td><td>&nbsp;&nbsp;1 พฤษภาคม 2461</td></tr><tr><td>อีเมล์ :</td><td>&nbsp;&nbsp;-</td></tr><tr><td>เว็บไซต์ :</td><td>&nbsp;&nbsp;<a href=\"http://ank.ssk.in.th/\" target=\"_blank\" rel=\"noreferrer noopener\">http://ank.ssk.in.th/</a></td></tr><tr><td>Facebook :</td><td>&nbsp;&nbsp;<a href=\"https://www.facebook.com/%E0%B9%82%E0%B8%A3%E0%B8%87%E0%B9%80%E0%B8%A3%E0%B8%B5%E0%B8%A2%E0%B8%99%E0%B8%AD%E0%B8%99%E0%B8%B8%E0%B8%9A%E0%B8%B2%E0%B8%A5%E0%B9%82%E0%B8%99%E0%B8%99%E0%B8%84%E0%B8%B9%E0%B8%93-%E0%B9%82%E0%B8%99%E0%B8%99%E0%B8%84%E0%B9%89%E0%B8%AD%E0%B8%A7%E0%B8%B4%E0%B8%97%E0%B8%A2%E0%B8%B2%E0%B8%84%E0%B8%B2%E0%B8%A3-105990897620047\" target=\"_blank\" rel=\"noreferrer noopener\">www.facebook.com/โรงเรียนอนุบาลโนนคูณ-โนนค้อวิทยาคาร-105990897620047</a></td></tr><tr><td>กลุ่มโรงเรียน :</td><td>&nbsp;&nbsp;</td></tr><tr><td>องค์กรปกครองส่วนท้องถิ่น :</td><td>&nbsp;&nbsp;โนนค้อ</td></tr><tr><td>ระยะทางจากโรงเรียน ถึงเขตพื้นที่ฯ:&nbsp;&nbsp;&nbsp;</td><td>&nbsp;&nbsp;60&nbsp;กม.</td></tr><tr><td>ระยะทางจากโรงเรียน ถึง อำเภอ:&nbsp;&nbsp;&nbsp;</td><td>&nbsp;&nbsp;4&nbsp;กม.</td></tr></tbody></table></figure>\n<!-- /wp:table -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','ข้อมูลทั่วไปโรงเรียน','','draft','closed','closed','','','','','2024-08-23 04:26:14','2024-08-23 04:26:14','',0,'http://ank.ssk.in.th/?page_id=197',0,'page','',0),
(198,1,'2022-08-22 07:54:46','2022-08-22 07:54:46','<!-- wp:paragraph -->\n<p><img src=\"https://data.bopp-obec.info/emis/pic_school/1033530665.jpg\" width=\"104\" height=\"105\"><br>ตราสัญลักษณ์&nbsp;โรงเรียนอนุบาลโนนคูณ (โนนค้อวิทยาคาร)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:table -->\n<figure class=\"wp-block-table\"><table><tbody><tr><td>รหัสโรงเรียน 10 หลัก :</td><td>&nbsp;&nbsp;1033530665</td></tr><tr><td>รหัส Smis 8 หลัก :</td><td>&nbsp; 33010155</td></tr><tr><td>รหัส Obec 6 หลัก :</td><td>&nbsp;&nbsp;530665</td></tr><tr><td>ชื่อสถานศึกษา(ไทย) :</td><td>&nbsp;&nbsp;อนุบาลโนนคูณ (โนนค้อวิทยาคาร)</td></tr><tr><td>ชื่อสถานศึกษา(อังกฤษ) :</td><td>&nbsp;&nbsp;anuban nonkhun(nonkhowittayakhan)</td></tr><tr><td>ที่อยู่ :</td><td>&nbsp;&nbsp;หมู่ที่ &nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;บ้านบ้านโนนค้อ</td></tr><tr><td>ตำบล :</td><td>&nbsp;&nbsp;โนนค้อ</td></tr><tr><td>อำเภอ :</td><td>&nbsp;&nbsp;โนนคูณ</td></tr><tr><td>จังหวัด :</td><td>&nbsp;&nbsp;ศรีสะเกษ</td></tr><tr><td>รหัสไปรษณีย์ :</td><td>&nbsp;&nbsp;33250</td></tr><tr><td>โทรศัพท์ :</td><td>&nbsp;&nbsp;0831294412</td></tr><tr><td>โทรสาร :</td><td>&nbsp;&nbsp;-</td></tr><tr><td>ระดับที่เปิดสอน :</td><td>&nbsp;อนุบาล-มัธยมศึกษาตอนต้น</td></tr><tr><td>วัน-เดือน-ปี ก่อตั้ง :</td><td>&nbsp;&nbsp;1 พฤษภาคม 2461</td></tr><tr><td>อีเมล์ :</td><td>&nbsp;&nbsp;-</td></tr><tr><td>เว็บไซต์ :</td><td>&nbsp;&nbsp;<a href=\"http://ank.ssk.in.th/\" target=\"_blank\" rel=\"noreferrer noopener\">http://ank.ssk.in.th/</a></td></tr><tr><td>Facebook :</td><td>&nbsp;&nbsp;<a href=\"https://www.facebook.com/%E0%B9%82%E0%B8%A3%E0%B8%87%E0%B9%80%E0%B8%A3%E0%B8%B5%E0%B8%A2%E0%B8%99%E0%B8%AD%E0%B8%99%E0%B8%B8%E0%B8%9A%E0%B8%B2%E0%B8%A5%E0%B9%82%E0%B8%99%E0%B8%99%E0%B8%84%E0%B8%B9%E0%B8%93-%E0%B9%82%E0%B8%99%E0%B8%99%E0%B8%84%E0%B9%89%E0%B8%AD%E0%B8%A7%E0%B8%B4%E0%B8%97%E0%B8%A2%E0%B8%B2%E0%B8%84%E0%B8%B2%E0%B8%A3-105990897620047\" target=\"_blank\" rel=\"noreferrer noopener\">www.facebook.com/โรงเรียนอนุบาลโนนคูณ-โนนค้อวิทยาคาร-105990897620047</a></td></tr><tr><td>กลุ่มโรงเรียน :</td><td>&nbsp;&nbsp;</td></tr><tr><td>องค์กรปกครองส่วนท้องถิ่น :</td><td>&nbsp;&nbsp;โนนค้อ</td></tr><tr><td>ระยะทางจากโรงเรียน ถึงเขตพื้นที่ฯ:&nbsp;&nbsp;&nbsp;</td><td>&nbsp;&nbsp;60&nbsp;กม.</td></tr><tr><td>ระยะทางจากโรงเรียน ถึง อำเภอ:&nbsp;&nbsp;&nbsp;</td><td>&nbsp;&nbsp;4&nbsp;กม.</td></tr></tbody></table></figure>\n<!-- /wp:table -->','ข้อมูลทั่วไปโรงเรียน','','inherit','closed','closed','','197-revision-v1','','','2022-08-22 07:54:46','2022-08-22 07:54:46','',197,'http://ank.ssk.in.th/?p=198',0,'revision','',0),
(199,1,'2024-08-27 06:32:11','2022-08-22 07:59:12','','ข้อมูลพื้นฐาน','','publish','closed','closed','','%e0%b8%82%e0%b9%89%e0%b8%ad%e0%b8%a1%e0%b8%b9%e0%b8%a5%e0%b8%97%e0%b8%b1%e0%b9%88%e0%b8%a7%e0%b9%84%e0%b8%9b%e0%b8%82%e0%b8%ad%e0%b8%87%e0%b9%82%e0%b8%a3%e0%b8%87%e0%b9%80%e0%b8%a3%e0%b8%b5%e0%b8%a2','','','2024-08-27 06:32:11','2024-08-27 06:32:11','',0,'http://ank.ssk.in.th/?p=199',3,'nav_menu_item','',0),
(200,1,'2022-08-22 08:05:09','0000-00-00 00:00:00','<!-- wp:paragraph -->\n<p>โรงเรียนอนุบาลโนนคูณ(โนนค้อวิทยาคาร)&nbsp;&nbsp;&nbsp; ตั้งขึ้นเมื่อวันที่&nbsp;&nbsp; 1&nbsp;&nbsp;&nbsp; พฤษภาคม&nbsp;&nbsp; 2461&nbsp;&nbsp; อาศัยศาลาวัดบ้านโนนค้อเป็นสถานที่ทำการสอนจนถึงปี พ.ศ. 2482 ให้ชื่อโรงเรียนว่า โรงเรียนประชาบาลโนนค้อ&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (วัดบ้านโนนค้อ) เป็นโรงเรียนที่นายอำเภอจัดตั้งตามระเบียบการจัดการศึกษาในสมัยนั้น ตามพระราชบัญญัติการประถมศึกษา&nbsp; พ.ศ.&nbsp; 2478&nbsp;&nbsp; เมื่อ พ.ศ.&nbsp; 2483&nbsp; ได้รับงบประมาณค่าปลูกสร้าง&nbsp; จำนวน&nbsp; 10,000&nbsp; บาท&nbsp; โดยอาศัยแรงงานราษฎรทั้งตำบลร่วมกันในการปลูกสร้างเป็นอาคารเอกเทศถาวรตามแบบ&nbsp;&nbsp; ป. 1 ของกระทรวงศึกษาธิการ จำนวน&nbsp; 4ห้องเรียนขึ้นที่กลางทุ่งนาระหว่างบ้านโนนค้อกับบ้านโนนคูณ (ที่ตั้งโรงเรียนมัธยมปัจจุบัน)&nbsp; มีนายทองศรี&nbsp;&nbsp; สุจริต&nbsp; เป็นครูใหญ่และเป็นหัวหน้าในการปลูกสร้างอาคารเรียน</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>พ.ศ.&nbsp; 2485&nbsp; นายอำเภอได้ให้นามโรงเรียนใหม่ว่า&nbsp; โรงเรียนประชาบาลโนนค้อ(โนนค้อวิทยาคาร)&nbsp; มีนักเรียนจากบ้านโนนค้อ , บ้านโนนคูณ , บ้านโปร่ง , บ้านหนองคู&nbsp; มาร่วมเข้าเรียน</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>พ.ศ.&nbsp; 2498&nbsp; อาคารเรียนมีสภาพทรุดโทรมมากไม่สามารถที่จะใช้เรียนได้&nbsp; ความปลอดภัยมีน้อยจึงขออนุญาตทางราชการแบ่งเด็กออกเป็น&nbsp; 2 กลุ่ม เมื่อวันที่ 16&nbsp; เมษายน&nbsp; 2498 คือเด็กนักเรียนจาก บ้านโนนค้อบ้านโปร่งย้ายไปเรียนที่ศาลาวัดบ้านโนนค้อ&nbsp; และให้เด็กนักเรียนบ้านโนนคูณ&nbsp; บ้านหนองคู ย้ายไปเรียนที่ศาลาวัดบ้านโนนคูณ&nbsp; ต่อมาจึงขอตั้งโรงเรียนบ้านโนนคูณขึ้นเมื่อ&nbsp; พ.ศ.&nbsp; 2500&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>พ.ศ.&nbsp; 2500&nbsp; ทางราชการได้จัดสรรงบประมาณให้&nbsp;&nbsp; 10,000&nbsp; บาท&nbsp; สมทบกับเงินบริจาคของครู&nbsp; ภารโรง&nbsp; กำนัน&nbsp; ผู้ใหญ่บ้าน&nbsp; แพทย์&nbsp; สารวัตรกำนัน&nbsp; ผู้ช่วยสมาชิกสภาตำบลและประชาชน&nbsp; ได้รื้อถอนอาคารเรียนหลังเดิมมาปลูกใหม่ที่บ้านโนนค้อ (ที่ตั้งปัจจุบัน)&nbsp; ซึ่งเป็นที่ดินที่ทางหมู่บ้านสร้างจนแล้วเสร็จ&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; เปิดทำการสอนเมื่อวันที่&nbsp; 24&nbsp;&nbsp; มิถุนายน&nbsp;&nbsp; 2500&nbsp;&nbsp; เป็นอาคารแบบ&nbsp; ป.1&nbsp;&nbsp; มีมุขกลางไม่มีเพดาน&nbsp; ใต้ถุนสูง</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>พ.ศ.&nbsp; 2513&nbsp; ทางราชการได้จัดงบประมาณสร้างอาคารเรียนหลังที่&nbsp; 2&nbsp; &nbsp; &nbsp;แบบ 017&nbsp; ขึ้น1&nbsp; หลัง&nbsp; 4&nbsp; ห้องเรียน&nbsp; เพื่อทำการสอนชั้นประถมศึกษาตอนปลาย&nbsp; คือชั้นประถมศึกษาปีที่&nbsp; 5&nbsp;&nbsp; ชั้นประถมศึกษาปีที่&nbsp; 6&nbsp; และชั้นประถมศึกษาปีที่&nbsp; 7&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>พ.ศ.&nbsp; 2519&nbsp;&nbsp;&nbsp; ทางสภาตำบลได้จัดสรรงบ&nbsp; ป.ช.ล.ค. ให้เพื่อซ่อมแซมอาคารหลังเดิมที่ชำรุดมาก</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>เป็นแบบ&nbsp; ป.1&nbsp; มีมุขกลาง&nbsp; ใต้ถุนสูงและมีเพดาน</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>พ.ศ.&nbsp; 2522&nbsp;&nbsp; ทางราชการได้จัดสรรงบประมาณปลูกสร้างอาคารเรียนหลังที่&nbsp; 3&nbsp; ให้เป็นอาคารคอนกรีตเสริมเหล็ก&nbsp; 2&nbsp; ชั้น&nbsp;&nbsp; 8&nbsp;&nbsp; ห้องเรียน&nbsp; ตามแบบ&nbsp; ศก. &nbsp;&nbsp;06&nbsp;&nbsp; จำนวน&nbsp;&nbsp; 1&nbsp;&nbsp; หลัง</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>พ.ศ.&nbsp; 2522&nbsp;&nbsp; ทางราชการได้จัดสรรงบประมาณปลูกสร้างอาคารอเนกประสงค์ให้อีก&nbsp; 1&nbsp;&nbsp; หลัง</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ตามแบบ&nbsp; ศก.&nbsp; 28&nbsp;&nbsp; มุงกระเบื้องทางราชการได้จัดสรรงบประมาณปลูกสร้างบ้านพักครูให้&nbsp; 1&nbsp;&nbsp; หลัง&nbsp; ตามแบบของกรมสามัญเดิมและส้วม&nbsp; 1&nbsp;&nbsp; หลัง&nbsp; จำนวน&nbsp; 5&nbsp;&nbsp; ที่&nbsp; ตามแบบของกรมสามัญ</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>พ.ศ.&nbsp; 2522&nbsp; ทางราชการได้จัดสรรงบประมาณสร้างบ้านพักครูเพิ่มให้อีก&nbsp; 3 หลัง&nbsp;&nbsp; ตามแบบ ศก.&nbsp; 36</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>พ.ศ.&nbsp; 2523&nbsp; ทางราชการได้จัดสรรงบประมาณปลูกสร้างส้วม แบบ&nbsp; ศก.&nbsp; 32&nbsp; จำนวน1&nbsp; หลัง&nbsp; 5&nbsp; ที่</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>พ.ศ.&nbsp; 2523&nbsp;&nbsp; สมาชิกสภาผู้แทนราษฎรเขต&nbsp; 1&nbsp;&nbsp; นายไพโรจน์&nbsp;&nbsp; เครือรัตน์&nbsp; และนายสุเทพ&nbsp;&nbsp; อาจสาลี&nbsp; ได้จัดสรรงบประมาณพัฒนาจังหวัดให้อีกโดย&nbsp; นายไพโรจน์&nbsp;&nbsp; เครือรัตน์&nbsp; จัดสรรให้&nbsp;&nbsp; 50,000&nbsp; บาท&nbsp; และ</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>นายสุเทพ&nbsp;&nbsp; อาจสาลี&nbsp; จัดสรรให้&nbsp;&nbsp;&nbsp; 30,000&nbsp;&nbsp; บาท&nbsp; รวมเป็นเงิน&nbsp;&nbsp; 80,000&nbsp; บาท&nbsp; สร้างรั้วคอนกรีตเสริมเหล็ก</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ให้อีก&nbsp; 3&nbsp; ด้าน</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ในปีงบประมาณ&nbsp;&nbsp; 2541 โรงเรียนได้เข้าร่วมโครงการปฏิรูปการศึกษา&nbsp; โดยได้รับจัดสรรงบประมาณ</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>สร้างห้องปฏิบัติการทางภาษา&nbsp;&nbsp; ห้องคอมพิวเตอร์&nbsp; และห้องปฏิบัติการทางวิทยาศาสตร์&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ในปีงบประมาณ&nbsp; 2542 โรงเรียนได้รับการจัดสรรงบประมาณประเภทเพิ่มค่าใช้จ่ายภาครัฐ&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (มิยาซาว่า)&nbsp; ในการสร้างส้วม&nbsp; 1&nbsp; หลัง&nbsp; 4&nbsp; ที่&nbsp; ตามแบบ สปช.&nbsp; 601/26&nbsp; โดยก่อสร้างแล้วเสร็จเดือนสิงหาคม2542</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ในเดือนสิงหาคม&nbsp; 2542&nbsp; ทางราชการได้อนุมัติให้รื้อถอนอาคารเรียนจำนวน&nbsp; 2&nbsp;&nbsp; หลัง&nbsp; คือ&nbsp; แบบ&nbsp; ป.1&nbsp; ซ&nbsp; ขนาด&nbsp; 2&nbsp;&nbsp; ห้องเรียน&nbsp; พร้อมบ้านพักครู&nbsp; จำนวน&nbsp; 2&nbsp;&nbsp; หลัง</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>วันที่&nbsp; 7&nbsp; สิงหาคม&nbsp;&nbsp; 2543&nbsp; โรงเรียนได้เปลี่ยนชื่อเป็น&nbsp; โรงเรียนอนุบาลโนนคูณ(โนนค้อวิทยาคาร)&nbsp; ตามโครงการสหวิทยาเขตมหามงคล&nbsp; โดยนายโกสินทร์&nbsp; เกษทอง&nbsp;&nbsp; ผู้ว่าราชการจังหวัดศรีสะเกษเป็นผู้ลงนามในประกาศ</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>7&nbsp;&nbsp;&nbsp; กรกฎาคม&nbsp;&nbsp;&nbsp;&nbsp; 2546&nbsp;&nbsp;&nbsp;&nbsp; ปฏิรูประบบราชการ&nbsp; โรงเรียนได้สังกัดสำนักงานคณะกรรมการการศึกษาขั้นพื้นฐาน&nbsp;&nbsp;&nbsp; ขึ้นกับสำนักงานเขตพื้นที่การศึกษาศรีสะเกษ เขต 1</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>พ.ศ.&nbsp;&nbsp; 2548&nbsp;&nbsp;&nbsp;&nbsp; โรงเรียนได้จัดการศึกษาโรงเรียนต้นแบบปฐมวัย&nbsp;&nbsp;&nbsp; ของอำเภอโนนคูณ</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>พ.ศ.&nbsp;&nbsp; 2549&nbsp;&nbsp;&nbsp;&nbsp; ได้ระดมทรัพยากรจัดหารายได้ปรับปรุงภูมิทัศน์และพัฒนาการจัดการศึกษา</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ปรับวิธีเรียนเปลี่ยนวิธีสอน&nbsp; รับรางวัลชมเชย ในโครงการคัดเลือกนักเรียน&nbsp; นักศึกษา&nbsp; และสถานศึกษา&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>เพื่อรับรางวัลพระราชระดับ ก่อนประถมศึกษา&nbsp; ขนาดเล็ก&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; พ.ศ. 2550&nbsp;&nbsp; ผ่านเกณฑ์การประเมินรับรองมาตรฐานโรงเรียนส่งเสริมสุขภาพ&nbsp; ระดับทอง ตามเกณฑ์การประเมินของกรมอนามัย</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; พ.ศ.2551&nbsp; รับเงินสนับสนุน จำนวน 105,000&nbsp; บาท&nbsp; เพื่อติดตั้งระบบเครื่องกรองน้ำและถังเก็บน้ำจากหอการค้าอเมริกันในประเทศไทย</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; พ.ศ. 2552&nbsp; เปิดขยายโอกาสทางการศึกษา&nbsp; ระดับการศึกษาขั้นพื้นฐานระดับมัธยมศึกษาตอนต้น</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>-ได้รับรางวัลสถานศึกษาแบบอย่างในการจัดกระบวนการเรียนการสอน&nbsp; และการบริหารจัดการ&nbsp; ตามหลักปรัชญาของเศรษฐกิจพอเพียง&nbsp; (&nbsp; สถานศึกษาพอเพียง&nbsp; 2552 )&nbsp; จาก เครือข่ายศูนย์ขับเคลื่อนเศรษฐกิจพอเพียงกระทรวงศึกษาธิการ&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - รับรางวัลโรงเรียนต้นแบบการจัดการเรียนรู้การสหกรณ์จากกรมส่งเสริมสหกรณ์ กระทรวงเกษตรและสหกรณ์</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ปีการศึกษา&nbsp; 2552&nbsp; ได้ทำพันธะสัญญากับวิทยาลัยสารพัดช่างศรีสะเกษ เปิดสอนหลักสูตรระยะสั้น เป็นวิชาเพิ่มเติมในกลุ่มสาระการเรียนรู้การงานอาชีพและเทคโนโลยี</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ปีการศึกษา&nbsp; 2553&nbsp; ผ่านการประเมิน 1 อำเภอ 1 โรงเรียนในฝัน&nbsp; ได้รับรางวัลกลุ่มยุวเกษตรกรดีเด่นระดับจังหวัดศรีสะเกษ</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ปีการศึกษา&nbsp; 2555&nbsp; ผ่านการประเมิน 1&nbsp; ได้รับรางวัลกลุ่มยุวเกษตรกรดีเด่นระดับจังหวัดศรีสะเกษ</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ปีการศึกษา&nbsp; 2555&nbsp; ได้รับคัดเลือกให้เป็นโรงเรียนต้นแบบการจัดการเรียนรู้งานอาชีพในโรงเรียนตามโครงการหนึ่งโรงเรียนหนึ่งอาชีพ ประจำปี&nbsp; 2555&nbsp; ระดับเขตพื้นที่การศึกษา&nbsp; สพป.ศก.1</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ปีการศึกษา&nbsp; 2555&nbsp; ได้รับคัดเลือกให้เป็นโรงเรียนต้นแบบการจัดการเรียนรู้สหกรณ์&nbsp;&nbsp; จากกรมส่งเสริมสหกรณ์&nbsp; กระทรวงเกษตรและสหกรณ์&nbsp; ประจำปี&nbsp; 2555</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ปีการศึกษา&nbsp; 2555&nbsp; ได้รับคัดเลือกให้เป็นโรงเรียนต้นแบบพัฒนาหลักสูตรสถานศึกษา วิชาเพิ่มเติม&nbsp; อาหารท้องถิ่นและบริการ&nbsp; ประจำปี&nbsp; 2555&nbsp; ระดับเขตพื้นที่การศึกษา&nbsp; สพป.ศก.1</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ปีการศึกษา&nbsp; 2556&nbsp; ผ่านการประเมินความยั่งยืนโรงเรียนในฝัน</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ปีการศึกษา&nbsp; 2556&nbsp; ผ่านการประเมินความยั่งยืนโรงเรียนในฝันด้านการจัดกระบวนการเรียนการสอนคุณธรรมจริยธรรมในโรงเรียน</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ปีการศึกษา&nbsp; 2556&nbsp; ผ่านการประเมินเป็นศูนย์การเรียนรู้ตามหลักปรัชญาของเศรษฐกิจพอเพียง ด้านการศึกษา</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ปีการศึกษา&nbsp; 2556&nbsp; ผ่านการประเมินเป็นศูนย์การเรียนรู้ตามหลักปรัชญาของเศรษฐกิจพอเพียง ด้านการศึกษา</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ปีการศึกษา&nbsp; 2556&nbsp; ผ่านการประเมินเป็นโรงเรียนคุณภาพมาตรฐานกิจกรรมวิทยาศาสตร์สำหรับเด็กปฐมวัย ในพระราชดำริสมเด็จพระเทพรัตนราชสุดาฯ</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ปีการศึกษา&nbsp; 2556&nbsp; ผ่านการประเมินเป็นโรงเรียนต้นแบบการจัดการเรียนรู้สหกรณ์</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ปีการศึกษา&nbsp; 2557&nbsp; โรงเรียนจัดกิจกรรมส่งเสริมการเรียนรู้ โครงการอาหารกลางวันตามหลักปรัชญาของเศรษฐกิจพอเพียง ระดับดีเยี่ยม&nbsp; อันดับ&nbsp; 1</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ปีการศึกษา&nbsp; 2557&nbsp; โรงเรียนจัดการเรียนรู้อย่างมีประสิทธิภาพ ทำให้ผลการประเมินคุณภาพนักเรียนระดับชาติ(o-net) ชั้นมัธยมศึกษาปีที่&nbsp; 3&nbsp; ปีการศึกษา&nbsp; 2557&nbsp; เป็น 10&nbsp; อันดับแรกของเขตพื้นที่การศึกษา</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ปีการศึกษา&nbsp; 2558&nbsp; คงสภาพเป็นศูนย์การเรียนรู้ตามหลักปรัชญาของเศรษฐกิจพอเพียง ด้านการศึกษาและเป็นโรงเรียนต้นแบบการจัดการเรียนรู้สหกรณ์</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ปีการศึกษา&nbsp; 2559โรงเรียนศีลห้าตามรอยพ่ออย่างพอเพียง</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ปีการศึกษา&nbsp; 2561&nbsp; ได้รับรางวัล&nbsp; MOE Award สาขาคุณธรรม ระดับดีเด่น จาก&nbsp; สพฐ.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ปีการศึกษา&nbsp; 2561&nbsp; ได้รับคัดเลือกเป็นโรงเรียน 1 ตำบล 1 โรงเรียนคุณภาพ&nbsp; จาก&nbsp; สพฐ.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ปัจจุบันโรงเรียนเปิดทำการสอนตั้งแต่ชั้นอนุบาลปีที่&nbsp;&nbsp; 1&nbsp; ถึงชั้นมัธยมศึกษาปีที่&nbsp; 3&nbsp;&nbsp;&nbsp; โดยมี&nbsp; นายคำพร&nbsp; แก้ววิเศษ เป็นผู้อำนวยการโรงเรียน</p>\n<!-- /wp:paragraph -->','ประวัติโรงเรียน','','draft','closed','closed','','','','','2022-08-22 08:05:09','2022-08-22 08:05:09','',0,'http://ank.ssk.in.th/?page_id=200',0,'page','',0),
(201,1,'2022-08-22 08:05:08','2022-08-22 08:05:08','<!-- wp:paragraph -->\n<p>โรงเรียนอนุบาลโนนคูณ(โนนค้อวิทยาคาร)&nbsp;&nbsp;&nbsp; ตั้งขึ้นเมื่อวันที่&nbsp;&nbsp; 1&nbsp;&nbsp;&nbsp; พฤษภาคม&nbsp;&nbsp; 2461&nbsp;&nbsp; อาศัยศาลาวัดบ้านโนนค้อเป็นสถานที่ทำการสอนจนถึงปี พ.ศ. 2482 ให้ชื่อโรงเรียนว่า โรงเรียนประชาบาลโนนค้อ&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (วัดบ้านโนนค้อ) เป็นโรงเรียนที่นายอำเภอจัดตั้งตามระเบียบการจัดการศึกษาในสมัยนั้น ตามพระราชบัญญัติการประถมศึกษา&nbsp; พ.ศ.&nbsp; 2478&nbsp;&nbsp; เมื่อ พ.ศ.&nbsp; 2483&nbsp; ได้รับงบประมาณค่าปลูกสร้าง&nbsp; จำนวน&nbsp; 10,000&nbsp; บาท&nbsp; โดยอาศัยแรงงานราษฎรทั้งตำบลร่วมกันในการปลูกสร้างเป็นอาคารเอกเทศถาวรตามแบบ&nbsp;&nbsp; ป. 1 ของกระทรวงศึกษาธิการ จำนวน&nbsp; 4ห้องเรียนขึ้นที่กลางทุ่งนาระหว่างบ้านโนนค้อกับบ้านโนนคูณ (ที่ตั้งโรงเรียนมัธยมปัจจุบัน)&nbsp; มีนายทองศรี&nbsp;&nbsp; สุจริต&nbsp; เป็นครูใหญ่และเป็นหัวหน้าในการปลูกสร้างอาคารเรียน</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>พ.ศ.&nbsp; 2485&nbsp; นายอำเภอได้ให้นามโรงเรียนใหม่ว่า&nbsp; โรงเรียนประชาบาลโนนค้อ(โนนค้อวิทยาคาร)&nbsp; มีนักเรียนจากบ้านโนนค้อ , บ้านโนนคูณ , บ้านโปร่ง , บ้านหนองคู&nbsp; มาร่วมเข้าเรียน</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>พ.ศ.&nbsp; 2498&nbsp; อาคารเรียนมีสภาพทรุดโทรมมากไม่สามารถที่จะใช้เรียนได้&nbsp; ความปลอดภัยมีน้อยจึงขออนุญาตทางราชการแบ่งเด็กออกเป็น&nbsp; 2 กลุ่ม เมื่อวันที่ 16&nbsp; เมษายน&nbsp; 2498 คือเด็กนักเรียนจาก บ้านโนนค้อบ้านโปร่งย้ายไปเรียนที่ศาลาวัดบ้านโนนค้อ&nbsp; และให้เด็กนักเรียนบ้านโนนคูณ&nbsp; บ้านหนองคู ย้ายไปเรียนที่ศาลาวัดบ้านโนนคูณ&nbsp; ต่อมาจึงขอตั้งโรงเรียนบ้านโนนคูณขึ้นเมื่อ&nbsp; พ.ศ.&nbsp; 2500&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>พ.ศ.&nbsp; 2500&nbsp; ทางราชการได้จัดสรรงบประมาณให้&nbsp;&nbsp; 10,000&nbsp; บาท&nbsp; สมทบกับเงินบริจาคของครู&nbsp; ภารโรง&nbsp; กำนัน&nbsp; ผู้ใหญ่บ้าน&nbsp; แพทย์&nbsp; สารวัตรกำนัน&nbsp; ผู้ช่วยสมาชิกสภาตำบลและประชาชน&nbsp; ได้รื้อถอนอาคารเรียนหลังเดิมมาปลูกใหม่ที่บ้านโนนค้อ (ที่ตั้งปัจจุบัน)&nbsp; ซึ่งเป็นที่ดินที่ทางหมู่บ้านสร้างจนแล้วเสร็จ&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; เปิดทำการสอนเมื่อวันที่&nbsp; 24&nbsp;&nbsp; มิถุนายน&nbsp;&nbsp; 2500&nbsp;&nbsp; เป็นอาคารแบบ&nbsp; ป.1&nbsp;&nbsp; มีมุขกลางไม่มีเพดาน&nbsp; ใต้ถุนสูง</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>พ.ศ.&nbsp; 2513&nbsp; ทางราชการได้จัดงบประมาณสร้างอาคารเรียนหลังที่&nbsp; 2&nbsp; &nbsp; &nbsp;แบบ 017&nbsp; ขึ้น1&nbsp; หลัง&nbsp; 4&nbsp; ห้องเรียน&nbsp; เพื่อทำการสอนชั้นประถมศึกษาตอนปลาย&nbsp; คือชั้นประถมศึกษาปีที่&nbsp; 5&nbsp;&nbsp; ชั้นประถมศึกษาปีที่&nbsp; 6&nbsp; และชั้นประถมศึกษาปีที่&nbsp; 7&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>พ.ศ.&nbsp; 2519&nbsp;&nbsp;&nbsp; ทางสภาตำบลได้จัดสรรงบ&nbsp; ป.ช.ล.ค. ให้เพื่อซ่อมแซมอาคารหลังเดิมที่ชำรุดมาก</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>เป็นแบบ&nbsp; ป.1&nbsp; มีมุขกลาง&nbsp; ใต้ถุนสูงและมีเพดาน</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>พ.ศ.&nbsp; 2522&nbsp;&nbsp; ทางราชการได้จัดสรรงบประมาณปลูกสร้างอาคารเรียนหลังที่&nbsp; 3&nbsp; ให้เป็นอาคารคอนกรีตเสริมเหล็ก&nbsp; 2&nbsp; ชั้น&nbsp;&nbsp; 8&nbsp;&nbsp; ห้องเรียน&nbsp; ตามแบบ&nbsp; ศก. &nbsp;&nbsp;06&nbsp;&nbsp; จำนวน&nbsp;&nbsp; 1&nbsp;&nbsp; หลัง</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>พ.ศ.&nbsp; 2522&nbsp;&nbsp; ทางราชการได้จัดสรรงบประมาณปลูกสร้างอาคารอเนกประสงค์ให้อีก&nbsp; 1&nbsp;&nbsp; หลัง</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ตามแบบ&nbsp; ศก.&nbsp; 28&nbsp;&nbsp; มุงกระเบื้องทางราชการได้จัดสรรงบประมาณปลูกสร้างบ้านพักครูให้&nbsp; 1&nbsp;&nbsp; หลัง&nbsp; ตามแบบของกรมสามัญเดิมและส้วม&nbsp; 1&nbsp;&nbsp; หลัง&nbsp; จำนวน&nbsp; 5&nbsp;&nbsp; ที่&nbsp; ตามแบบของกรมสามัญ</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>พ.ศ.&nbsp; 2522&nbsp; ทางราชการได้จัดสรรงบประมาณสร้างบ้านพักครูเพิ่มให้อีก&nbsp; 3 หลัง&nbsp;&nbsp; ตามแบบ ศก.&nbsp; 36</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>พ.ศ.&nbsp; 2523&nbsp; ทางราชการได้จัดสรรงบประมาณปลูกสร้างส้วม แบบ&nbsp; ศก.&nbsp; 32&nbsp; จำนวน1&nbsp; หลัง&nbsp; 5&nbsp; ที่</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>พ.ศ.&nbsp; 2523&nbsp;&nbsp; สมาชิกสภาผู้แทนราษฎรเขต&nbsp; 1&nbsp;&nbsp; นายไพโรจน์&nbsp;&nbsp; เครือรัตน์&nbsp; และนายสุเทพ&nbsp;&nbsp; อาจสาลี&nbsp; ได้จัดสรรงบประมาณพัฒนาจังหวัดให้อีกโดย&nbsp; นายไพโรจน์&nbsp;&nbsp; เครือรัตน์&nbsp; จัดสรรให้&nbsp;&nbsp; 50,000&nbsp; บาท&nbsp; และ</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>นายสุเทพ&nbsp;&nbsp; อาจสาลี&nbsp; จัดสรรให้&nbsp;&nbsp;&nbsp; 30,000&nbsp;&nbsp; บาท&nbsp; รวมเป็นเงิน&nbsp;&nbsp; 80,000&nbsp; บาท&nbsp; สร้างรั้วคอนกรีตเสริมเหล็ก</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ให้อีก&nbsp; 3&nbsp; ด้าน</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ในปีงบประมาณ&nbsp;&nbsp; 2541 โรงเรียนได้เข้าร่วมโครงการปฏิรูปการศึกษา&nbsp; โดยได้รับจัดสรรงบประมาณ</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>สร้างห้องปฏิบัติการทางภาษา&nbsp;&nbsp; ห้องคอมพิวเตอร์&nbsp; และห้องปฏิบัติการทางวิทยาศาสตร์&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ในปีงบประมาณ&nbsp; 2542 โรงเรียนได้รับการจัดสรรงบประมาณประเภทเพิ่มค่าใช้จ่ายภาครัฐ&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (มิยาซาว่า)&nbsp; ในการสร้างส้วม&nbsp; 1&nbsp; หลัง&nbsp; 4&nbsp; ที่&nbsp; ตามแบบ สปช.&nbsp; 601/26&nbsp; โดยก่อสร้างแล้วเสร็จเดือนสิงหาคม2542</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ในเดือนสิงหาคม&nbsp; 2542&nbsp; ทางราชการได้อนุมัติให้รื้อถอนอาคารเรียนจำนวน&nbsp; 2&nbsp;&nbsp; หลัง&nbsp; คือ&nbsp; แบบ&nbsp; ป.1&nbsp; ซ&nbsp; ขนาด&nbsp; 2&nbsp;&nbsp; ห้องเรียน&nbsp; พร้อมบ้านพักครู&nbsp; จำนวน&nbsp; 2&nbsp;&nbsp; หลัง</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>วันที่&nbsp; 7&nbsp; สิงหาคม&nbsp;&nbsp; 2543&nbsp; โรงเรียนได้เปลี่ยนชื่อเป็น&nbsp; โรงเรียนอนุบาลโนนคูณ(โนนค้อวิทยาคาร)&nbsp; ตามโครงการสหวิทยาเขตมหามงคล&nbsp; โดยนายโกสินทร์&nbsp; เกษทอง&nbsp;&nbsp; ผู้ว่าราชการจังหวัดศรีสะเกษเป็นผู้ลงนามในประกาศ</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>7&nbsp;&nbsp;&nbsp; กรกฎาคม&nbsp;&nbsp;&nbsp;&nbsp; 2546&nbsp;&nbsp;&nbsp;&nbsp; ปฏิรูประบบราชการ&nbsp; โรงเรียนได้สังกัดสำนักงานคณะกรรมการการศึกษาขั้นพื้นฐาน&nbsp;&nbsp;&nbsp; ขึ้นกับสำนักงานเขตพื้นที่การศึกษาศรีสะเกษ เขต 1</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>พ.ศ.&nbsp;&nbsp; 2548&nbsp;&nbsp;&nbsp;&nbsp; โรงเรียนได้จัดการศึกษาโรงเรียนต้นแบบปฐมวัย&nbsp;&nbsp;&nbsp; ของอำเภอโนนคูณ</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>พ.ศ.&nbsp;&nbsp; 2549&nbsp;&nbsp;&nbsp;&nbsp; ได้ระดมทรัพยากรจัดหารายได้ปรับปรุงภูมิทัศน์และพัฒนาการจัดการศึกษา</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ปรับวิธีเรียนเปลี่ยนวิธีสอน&nbsp; รับรางวัลชมเชย ในโครงการคัดเลือกนักเรียน&nbsp; นักศึกษา&nbsp; และสถานศึกษา&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>เพื่อรับรางวัลพระราชระดับ ก่อนประถมศึกษา&nbsp; ขนาดเล็ก&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; พ.ศ. 2550&nbsp;&nbsp; ผ่านเกณฑ์การประเมินรับรองมาตรฐานโรงเรียนส่งเสริมสุขภาพ&nbsp; ระดับทอง ตามเกณฑ์การประเมินของกรมอนามัย</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; พ.ศ.2551&nbsp; รับเงินสนับสนุน จำนวน 105,000&nbsp; บาท&nbsp; เพื่อติดตั้งระบบเครื่องกรองน้ำและถังเก็บน้ำจากหอการค้าอเมริกันในประเทศไทย</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; พ.ศ. 2552&nbsp; เปิดขยายโอกาสทางการศึกษา&nbsp; ระดับการศึกษาขั้นพื้นฐานระดับมัธยมศึกษาตอนต้น</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>-ได้รับรางวัลสถานศึกษาแบบอย่างในการจัดกระบวนการเรียนการสอน&nbsp; และการบริหารจัดการ&nbsp; ตามหลักปรัชญาของเศรษฐกิจพอเพียง&nbsp; (&nbsp; สถานศึกษาพอเพียง&nbsp; 2552 )&nbsp; จาก เครือข่ายศูนย์ขับเคลื่อนเศรษฐกิจพอเพียงกระทรวงศึกษาธิการ&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - รับรางวัลโรงเรียนต้นแบบการจัดการเรียนรู้การสหกรณ์จากกรมส่งเสริมสหกรณ์ กระทรวงเกษตรและสหกรณ์</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ปีการศึกษา&nbsp; 2552&nbsp; ได้ทำพันธะสัญญากับวิทยาลัยสารพัดช่างศรีสะเกษ เปิดสอนหลักสูตรระยะสั้น เป็นวิชาเพิ่มเติมในกลุ่มสาระการเรียนรู้การงานอาชีพและเทคโนโลยี</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ปีการศึกษา&nbsp; 2553&nbsp; ผ่านการประเมิน 1 อำเภอ 1 โรงเรียนในฝัน&nbsp; ได้รับรางวัลกลุ่มยุวเกษตรกรดีเด่นระดับจังหวัดศรีสะเกษ</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ปีการศึกษา&nbsp; 2555&nbsp; ผ่านการประเมิน 1&nbsp; ได้รับรางวัลกลุ่มยุวเกษตรกรดีเด่นระดับจังหวัดศรีสะเกษ</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ปีการศึกษา&nbsp; 2555&nbsp; ได้รับคัดเลือกให้เป็นโรงเรียนต้นแบบการจัดการเรียนรู้งานอาชีพในโรงเรียนตามโครงการหนึ่งโรงเรียนหนึ่งอาชีพ ประจำปี&nbsp; 2555&nbsp; ระดับเขตพื้นที่การศึกษา&nbsp; สพป.ศก.1</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ปีการศึกษา&nbsp; 2555&nbsp; ได้รับคัดเลือกให้เป็นโรงเรียนต้นแบบการจัดการเรียนรู้สหกรณ์&nbsp;&nbsp; จากกรมส่งเสริมสหกรณ์&nbsp; กระทรวงเกษตรและสหกรณ์&nbsp; ประจำปี&nbsp; 2555</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ปีการศึกษา&nbsp; 2555&nbsp; ได้รับคัดเลือกให้เป็นโรงเรียนต้นแบบพัฒนาหลักสูตรสถานศึกษา วิชาเพิ่มเติม&nbsp; อาหารท้องถิ่นและบริการ&nbsp; ประจำปี&nbsp; 2555&nbsp; ระดับเขตพื้นที่การศึกษา&nbsp; สพป.ศก.1</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ปีการศึกษา&nbsp; 2556&nbsp; ผ่านการประเมินความยั่งยืนโรงเรียนในฝัน</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ปีการศึกษา&nbsp; 2556&nbsp; ผ่านการประเมินความยั่งยืนโรงเรียนในฝันด้านการจัดกระบวนการเรียนการสอนคุณธรรมจริยธรรมในโรงเรียน</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ปีการศึกษา&nbsp; 2556&nbsp; ผ่านการประเมินเป็นศูนย์การเรียนรู้ตามหลักปรัชญาของเศรษฐกิจพอเพียง ด้านการศึกษา</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ปีการศึกษา&nbsp; 2556&nbsp; ผ่านการประเมินเป็นศูนย์การเรียนรู้ตามหลักปรัชญาของเศรษฐกิจพอเพียง ด้านการศึกษา</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ปีการศึกษา&nbsp; 2556&nbsp; ผ่านการประเมินเป็นโรงเรียนคุณภาพมาตรฐานกิจกรรมวิทยาศาสตร์สำหรับเด็กปฐมวัย ในพระราชดำริสมเด็จพระเทพรัตนราชสุดาฯ</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ปีการศึกษา&nbsp; 2556&nbsp; ผ่านการประเมินเป็นโรงเรียนต้นแบบการจัดการเรียนรู้สหกรณ์</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ปีการศึกษา&nbsp; 2557&nbsp; โรงเรียนจัดกิจกรรมส่งเสริมการเรียนรู้ โครงการอาหารกลางวันตามหลักปรัชญาของเศรษฐกิจพอเพียง ระดับดีเยี่ยม&nbsp; อันดับ&nbsp; 1</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ปีการศึกษา&nbsp; 2557&nbsp; โรงเรียนจัดการเรียนรู้อย่างมีประสิทธิภาพ ทำให้ผลการประเมินคุณภาพนักเรียนระดับชาติ(o-net) ชั้นมัธยมศึกษาปีที่&nbsp; 3&nbsp; ปีการศึกษา&nbsp; 2557&nbsp; เป็น 10&nbsp; อันดับแรกของเขตพื้นที่การศึกษา</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ปีการศึกษา&nbsp; 2558&nbsp; คงสภาพเป็นศูนย์การเรียนรู้ตามหลักปรัชญาของเศรษฐกิจพอเพียง ด้านการศึกษาและเป็นโรงเรียนต้นแบบการจัดการเรียนรู้สหกรณ์</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ปีการศึกษา&nbsp; 2559โรงเรียนศีลห้าตามรอยพ่ออย่างพอเพียง</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ปีการศึกษา&nbsp; 2561&nbsp; ได้รับรางวัล&nbsp; MOE Award สาขาคุณธรรม ระดับดีเด่น จาก&nbsp; สพฐ.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ปีการศึกษา&nbsp; 2561&nbsp; ได้รับคัดเลือกเป็นโรงเรียน 1 ตำบล 1 โรงเรียนคุณภาพ&nbsp; จาก&nbsp; สพฐ.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ปัจจุบันโรงเรียนเปิดทำการสอนตั้งแต่ชั้นอนุบาลปีที่&nbsp;&nbsp; 1&nbsp; ถึงชั้นมัธยมศึกษาปีที่&nbsp; 3&nbsp;&nbsp;&nbsp; โดยมี&nbsp; นายคำพร&nbsp; แก้ววิเศษ เป็นผู้อำนวยการโรงเรียน</p>\n<!-- /wp:paragraph -->','ประวัติโรงเรียน','','inherit','closed','closed','','200-revision-v1','','','2022-08-22 08:05:08','2022-08-22 08:05:08','',200,'http://ank.ssk.in.th/?p=201',0,'revision','',0),
(202,1,'2024-08-27 06:32:11','2022-08-22 08:13:07','','ข้อมูลผู้บริหาร','','publish','closed','closed','','%e0%b9%82%e0%b8%84%e0%b8%a3%e0%b8%87%e0%b8%aa%e0%b8%a3%e0%b9%89%e0%b8%b2%e0%b8%87%e0%b8%ab%e0%b8%99%e0%b9%88%e0%b8%a7%e0%b8%a2%e0%b8%87%e0%b8%b2%e0%b8%99','','','2024-08-27 06:32:11','2024-08-27 06:32:11','',0,'http://ank.ssk.in.th/?p=202',5,'nav_menu_item','',0),
(208,1,'2024-08-27 06:49:55','2022-08-22 08:24:48','','ข้อมูลสารสนเทศ','','publish','closed','closed','','%e0%b8%82%e0%b9%89%e0%b8%ad%e0%b8%a1%e0%b8%b9%e0%b8%a5%e0%b8%aa%e0%b8%b2%e0%b8%a3%e0%b8%aa%e0%b8%99%e0%b9%80%e0%b8%97%e0%b8%a8','','','2024-08-27 06:49:55','2024-08-27 06:49:55','',0,'http://ank.ssk.in.th/?p=208',8,'nav_menu_item','',0),
(209,1,'2024-08-27 06:49:55','2022-08-22 08:24:48','','ข้อมูลนักเรียน','','publish','closed','closed','','%e0%b8%82%e0%b9%89%e0%b8%ad%e0%b8%a1%e0%b8%b9%e0%b8%a5%e0%b8%99%e0%b8%b1%e0%b8%81%e0%b9%80%e0%b8%a3%e0%b8%b5%e0%b8%a2%e0%b8%99-2','','','2024-08-27 06:49:55','2024-08-27 06:49:55','',0,'http://ank.ssk.in.th/?p=209',10,'nav_menu_item','',0),
(210,1,'2024-08-27 06:49:55','2022-08-22 08:24:48','','ข้อมูลบุคลากร','','publish','closed','closed','','%e0%b8%82%e0%b9%89%e0%b8%ad%e0%b8%a1%e0%b8%b9%e0%b8%a5%e0%b8%9a%e0%b8%b8%e0%b8%84%e0%b8%a5%e0%b8%b2%e0%b8%81%e0%b8%a3-2','','','2024-08-27 06:49:55','2024-08-27 06:49:55','',0,'http://ank.ssk.in.th/?p=210',9,'nav_menu_item','',0),
(211,1,'2024-08-27 06:52:53','2022-08-22 08:24:48','','ข้อมูลที่ดิน สิ่งปลูกสร้าง','','publish','closed','closed','','%e0%b8%82%e0%b9%89%e0%b8%ad%e0%b8%a1%e0%b8%b9%e0%b8%a5%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%94%e0%b8%b4%e0%b8%99-%e0%b8%aa%e0%b8%b4%e0%b9%88%e0%b8%87%e0%b8%9b%e0%b8%a5%e0%b8%b9%e0%b8%81%e0%b8%aa%e0%b8%a3','','','2024-08-27 06:52:53','2024-08-27 06:52:53','',0,'http://ank.ssk.in.th/?p=211',12,'nav_menu_item','',0),
(213,1,'2024-08-27 06:49:55','2022-08-22 08:29:34','','เขตพื้นที่บริการ','','publish','closed','closed','','%e0%b9%80%e0%b8%82%e0%b8%95%e0%b8%9e%e0%b8%b7%e0%b9%89%e0%b8%99%e0%b8%97%e0%b8%b5%e0%b9%88%e0%b8%9a%e0%b8%a3%e0%b8%b4%e0%b8%81%e0%b8%b2%e0%b8%a3','','','2024-08-27 06:49:55','2024-08-27 06:49:55','',0,'http://ank.ssk.in.th/?p=213',7,'nav_menu_item','',0),
(214,1,'2024-08-27 06:52:54','2022-08-22 08:29:35','','E-Service','','publish','closed','closed','','e-service','','','2024-08-27 06:52:54','2024-08-27 06:52:54','',0,'http://ank.ssk.in.th/?p=214',13,'nav_menu_item','',0),
(215,1,'2024-08-27 06:52:54','2022-08-22 08:29:35','','SMSS','','publish','closed','closed','','smss','','','2024-08-27 06:52:54','2024-08-27 06:52:54','',0,'http://ank.ssk.in.th/?p=215',14,'nav_menu_item','',0),
(216,1,'2024-08-27 06:52:54','2022-08-22 08:29:35','','สลิปเงินเดือน','','publish','closed','closed','','%e0%b8%aa%e0%b8%a5%e0%b8%b4%e0%b8%9b%e0%b9%80%e0%b8%87%e0%b8%b4%e0%b8%99%e0%b9%80%e0%b8%94%e0%b8%b7%e0%b8%ad%e0%b8%99','','','2024-08-27 06:52:54','2024-08-27 06:52:54','',0,'http://ank.ssk.in.th/?p=216',15,'nav_menu_item','',0),
(217,1,'2024-08-27 06:52:54','2022-08-22 08:29:35','','ระบบวัดและประเมินผล ออนไลน์','','publish','closed','closed','','%e0%b8%a3%e0%b8%b0%e0%b8%9a%e0%b8%9a%e0%b8%a7%e0%b8%b1%e0%b8%94%e0%b9%81%e0%b8%a5%e0%b8%b0%e0%b8%9b%e0%b8%a3%e0%b8%b0%e0%b9%80%e0%b8%a1%e0%b8%b4%e0%b8%99%e0%b8%9c%e0%b8%a5-%e0%b8%ad%e0%b8%ad%e0%b8%99','','','2024-08-27 06:52:54','2024-08-27 06:52:54','',0,'http://ank.ssk.in.th/?p=217',16,'nav_menu_item','',0),
(218,1,'2024-08-27 06:52:54','2022-08-22 08:36:06','','เว็บไซต์เครือข่าย','','publish','closed','closed','','%e0%b9%80%e0%b8%a7%e0%b9%87%e0%b8%9a%e0%b9%84%e0%b8%8b%e0%b8%95%e0%b9%8c%e0%b9%80%e0%b8%84%e0%b8%a3%e0%b8%b7%e0%b8%ad%e0%b8%82%e0%b9%88%e0%b8%b2%e0%b8%a2','','','2024-08-27 06:52:54','2024-08-27 06:52:54','',0,'http://ank.ssk.in.th/?p=218',17,'nav_menu_item','',0),
(219,1,'2024-08-27 06:52:54','2022-08-22 08:36:06','','สพป.ศรีสะเกษ เขต1','','publish','closed','closed','','%e0%b8%aa%e0%b8%9e%e0%b8%9b-%e0%b8%a8%e0%b8%a3%e0%b8%b5%e0%b8%aa%e0%b8%b0%e0%b9%80%e0%b8%81%e0%b8%a9-%e0%b9%80%e0%b8%82%e0%b8%951','','','2024-08-27 06:52:54','2024-08-27 06:52:54','',0,'http://ank.ssk.in.th/?p=219',18,'nav_menu_item','',0),
(220,1,'2024-08-27 06:52:54','2022-08-22 08:36:06','','สพฐ','','publish','closed','closed','','%e0%b8%aa%e0%b8%9e%e0%b8%90','','','2024-08-27 06:52:54','2024-08-27 06:52:54','',0,'http://ank.ssk.in.th/?p=220',19,'nav_menu_item','',0),
(221,1,'2024-08-27 06:52:54','2022-08-22 08:36:07','','กระทรวงศึกษาธิการ','','publish','closed','closed','','%e0%b8%81%e0%b8%a3%e0%b8%b0%e0%b8%97%e0%b8%a3%e0%b8%a7%e0%b8%87%e0%b8%a8%e0%b8%b6%e0%b8%81%e0%b8%a9%e0%b8%b2%e0%b8%98%e0%b8%b4%e0%b8%81%e0%b8%b2%e0%b8%a3','','','2024-08-27 06:52:54','2024-08-27 06:52:54','',0,'http://ank.ssk.in.th/?p=221',20,'nav_menu_item','',0),
(222,1,'2024-08-27 06:52:54','2022-08-22 08:36:07','','โรงเรียนคุณภาพประจำตำบล','','publish','closed','closed','','%e0%b9%82%e0%b8%a3%e0%b8%87%e0%b9%80%e0%b8%a3%e0%b8%b5%e0%b8%a2%e0%b8%99%e0%b8%9b%e0%b8%a3%e0%b8%b0%e0%b8%8a%e0%b8%b2%e0%b8%a3%e0%b8%b1%e0%b8%90','','','2024-08-27 06:52:54','2024-08-27 06:52:54','',0,'http://ank.ssk.in.th/?p=222',21,'nav_menu_item','',0),
(223,1,'2024-08-27 06:52:53','2022-08-22 08:36:07','','โรงเรียนสุจริต','','publish','closed','closed','','%e0%b9%82%e0%b8%a3%e0%b8%87%e0%b9%80%e0%b8%a3%e0%b8%b5%e0%b8%a2%e0%b8%99%e0%b8%aa%e0%b8%b8%e0%b8%88%e0%b8%a3%e0%b8%b4%e0%b8%95','','','2024-08-27 06:52:53','2024-08-27 06:52:53','',0,'http://ank.ssk.in.th/?p=223',22,'nav_menu_item','',0),
(224,1,'2024-08-27 06:52:53','2022-08-22 08:36:07','','โรงเรียนดีประจำตำบล','','publish','closed','closed','','%e0%b9%82%e0%b8%a3%e0%b8%87%e0%b9%80%e0%b8%a3%e0%b8%b5%e0%b8%a2%e0%b8%99%e0%b8%94%e0%b8%b5%e0%b8%9b%e0%b8%a3%e0%b8%b0%e0%b8%88%e0%b8%b3%e0%b8%95%e0%b8%b3%e0%b8%9a%e0%b8%a5','','','2024-08-27 06:52:53','2024-08-27 06:52:53','',0,'http://ank.ssk.in.th/?p=224',23,'nav_menu_item','',0),
(225,1,'2024-08-27 06:52:53','2022-08-22 08:36:07','','โรงเรียนวิถีพุทธ','','publish','closed','closed','','%e0%b9%82%e0%b8%a3%e0%b8%87%e0%b9%80%e0%b8%a3%e0%b8%b5%e0%b8%a2%e0%b8%99%e0%b8%a7%e0%b8%b4%e0%b8%96%e0%b8%b5%e0%b8%9e%e0%b8%b8%e0%b8%97%e0%b8%98','','','2024-08-27 06:52:53','2024-08-27 06:52:53','',0,'http://ank.ssk.in.th/?p=225',24,'nav_menu_item','',0),
(226,1,'2024-08-27 06:52:53','2022-08-22 08:36:07','','โรงเรียนคุณธรรม','','publish','closed','closed','','%e0%b9%82%e0%b8%a3%e0%b8%87%e0%b9%80%e0%b8%a3%e0%b8%b5%e0%b8%a2%e0%b8%99%e0%b8%84%e0%b8%b8%e0%b8%93%e0%b8%98%e0%b8%a3%e0%b8%a3%e0%b8%a1','','','2024-08-27 06:52:53','2024-08-27 06:52:53','',0,'http://ank.ssk.in.th/?p=226',25,'nav_menu_item','',0),
(227,1,'2024-08-27 06:52:53','2022-08-22 08:42:48','','สื่อการเรียนการสอน','','publish','closed','closed','','%e0%b8%aa%e0%b8%b7%e0%b9%88%e0%b8%ad%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%a3%e0%b8%b5%e0%b8%a2%e0%b8%99%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%aa%e0%b8%ad%e0%b8%99','','','2024-08-27 06:52:53','2024-08-27 06:52:53','',0,'http://ank.ssk.in.th/?p=227',26,'nav_menu_item','',0),
(228,1,'2024-08-27 06:52:53','2022-08-22 08:42:48','','code.org','','publish','closed','closed','','code-org','','','2024-08-27 06:52:53','2024-08-27 06:52:53','',0,'http://ank.ssk.in.th/?p=228',27,'nav_menu_item','',0),
(229,1,'2024-08-27 06:52:53','2022-08-22 08:42:48','','ฝึกพิมพ์ดีด','','publish','closed','closed','','%e0%b8%9d%e0%b8%b6%e0%b8%81%e0%b8%9e%e0%b8%b4%e0%b8%a1%e0%b8%9e%e0%b9%8c%e0%b8%94%e0%b8%b5%e0%b8%94','','','2024-08-27 06:52:53','2024-08-27 06:52:53','',0,'http://ank.ssk.in.th/?p=229',28,'nav_menu_item','',0),
(230,1,'2024-08-27 06:52:53','2022-08-22 08:42:48','','google classroom','','publish','closed','closed','','google-classroom','','','2024-08-27 06:52:53','2024-08-27 06:52:53','',0,'http://ank.ssk.in.th/?p=230',29,'nav_menu_item','',0),
(231,1,'2024-08-27 06:52:53','2022-08-22 08:42:48','','youtube.com','','publish','closed','closed','','youtube-com','','','2024-08-27 06:52:53','2024-08-27 06:52:53','',0,'http://ank.ssk.in.th/?p=231',30,'nav_menu_item','',0),
(232,1,'2024-08-27 06:52:53','2022-08-22 08:42:48','','y8.com','','publish','closed','closed','','y8-com','','','2024-08-27 06:52:53','2024-08-27 06:52:53','',0,'http://ank.ssk.in.th/?p=232',31,'nav_menu_item','',0),
(233,1,'2024-08-27 06:52:53','2022-08-22 08:46:16','','ติดต่อเรา','','publish','closed','closed','','%e0%b8%95%e0%b8%b4%e0%b8%94%e0%b8%95%e0%b9%88%e0%b8%ad%e0%b9%80%e0%b8%a3%e0%b8%b2','','','2024-08-27 06:52:53','2024-08-27 06:52:53','',0,'http://ank.ssk.in.th/?p=233',32,'nav_menu_item','',0),
(235,1,'2022-08-22 08:47:45','2022-08-22 08:47:45','','cropped-banner.jpg','','inherit','','closed','','cropped-banner-jpg','','','2022-08-22 08:47:45','2022-08-22 08:47:45','',0,'http://ank.ssk.in.th/wp-content/uploads/2022/08/cropped-banner.jpg',0,'attachment','image/jpeg',0),
(237,1,'2024-08-06 04:27:34','2024-08-06 04:27:34','','Logo ank-removebg-preview','','inherit','','closed','','logo-ank-removebg-preview','','','2024-08-06 04:27:34','2024-08-06 04:27:34','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/Logo-ank-removebg-preview.png',0,'attachment','image/png',0),
(244,1,'2024-08-06 06:23:18','0000-00-00 00:00:00','','ทดสอบ','','draft','closed','closed','','','','','2024-08-06 06:23:18','0000-00-00 00:00:00','',0,'http://ank.ssk.in.th/?p=244',1,'nav_menu_item','',0),
(245,1,'2024-08-06 06:23:44','0000-00-00 00:00:00','','ทดสอบ1','','draft','closed','closed','','','','','2024-08-06 06:23:44','0000-00-00 00:00:00','',0,'http://ank.ssk.in.th/?p=245',1,'nav_menu_item','',0),
(250,1,'2024-08-06 06:37:20','2024-08-06 06:37:20','<!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"หน้าแรก\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"http://web085.ssk.in.th/\"} /--><!-- wp:navigation-submenu {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"ข้อมูลพื้นฐานโรงเรียน\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} --><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"ข้อมูลทั่วไปของโรงเรียน\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"http://web085.ssk.in.th/?page_id=197\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"ประวัติโรงเรียน\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"http://web085.ssk.in.th/?page_id=200\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"คณะกรรมการสถานศึกษา\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"โครงสร้างหน่วยงาน\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"ข้อมูลผู้บริหาร\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"วิสัยทัศน์/พันธกิจ\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"http://web085.ssk.in.th/index.php/%e0%b8%a7%e0%b8%aa%e0%b8%a2%e0%b8%97%e0%b8%a8%e0%b8%99%e0%b9%82%e0%b8%a3%e0%b8%87%e0%b9%80%e0%b8%a3%e0%b8%a2%e0%b8%99/\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"อำนาจหน้าที่\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"แผนการดำเนินงาน\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"กฎหมายที่เกี่ยวข้อง\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"คู่มือบริการประชาชน\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"แบบสำรวจความพึ่งพอใจ\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} /--><!-- /wp:navigation-submenu --><!-- wp:navigation-submenu {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"ข้อมูลสารสนเทศ\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} --><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"ข้อมูลนักเรียน\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"ข้อมูลบุคลากร\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"ข้อมูลที่ดิน สิ่งปลูกสร้าง\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"ข้อมูลคุรุภัณฑ์\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"เขตพื้นที่บริการ\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} /--><!-- /wp:navigation-submenu --><!-- wp:navigation-submenu {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"E-Service\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} --><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"SMSS\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"สลิปเงินเดือน\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"ระบบวัดและประเมินผล ออนไลน์\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} /--><!-- /wp:navigation-submenu --><!-- wp:navigation-submenu {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"เว็บไซต์เครือข่าย\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} --><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"สพป.ศรีสะเกษ เขต1\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"สพฐ\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"กระทรวงศึกษาธิการ\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"โรงเรียนประชารัฐ\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"โรงเรียนสุจริต\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"โรงเรียนดีประจำตำบล\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"โรงเรียนวิถีพุทธ\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"โรงเรียนคุณธรรม\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} /--><!-- /wp:navigation-submenu --><!-- wp:navigation-submenu {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"สื่อการเรียนการสอน\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} --><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"code.org\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"https://code.org/\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"ฝึกพิมพ์ดีด\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"https://www.typingstudy.com/th-thai_kedmanee-3/lesson/1\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"google classroom\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"https://classroom.google.com/h\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"youtube.com\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"https://www.youtube.com/\"} /--><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"y8.com\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"https://th.y8.com/\"} /--><!-- /wp:navigation-submenu --><!-- wp:navigation-link {\"className\":\" menu-item menu-item-type-custom menu-item-object-custom\",\"description\":\"\",\"id\":null,\"kind\":\"custom\",\"label\":\"ติดต่อเรา\",\"opensInNewTab\":false,\"rel\":null,\"title\":\"\",\"type\":\"custom\",\"url\":\"#\"} /-->','Primary','','publish','closed','closed','','primary','','','2024-08-06 06:37:20','2024-08-06 06:37:20','',0,'http://ank.ssk.in.th/index.php/2024/08/06/primary/',0,'wp_navigation','',0),
(267,1,'2024-08-22 04:53:02','2024-08-22 04:53:02','http://ank.ssk.in.th/wp-content/uploads/2022/08/cropped-cropped-banner.jpg','cropped-cropped-banner.jpg','','inherit','','closed','','cropped-cropped-banner-jpg','','','2024-08-22 04:53:02','2024-08-22 04:53:02','',235,'http://ank.ssk.in.th/wp-content/uploads/2022/08/cropped-cropped-banner.jpg',0,'attachment','image/jpeg',0),
(272,1,'2024-08-22 06:54:42','2024-08-22 06:54:42','','01. โครงสร้าง','','inherit','','closed','','01-%e0%b9%82%e0%b8%84%e0%b8%a3%e0%b8%87%e0%b8%aa%e0%b8%a3%e0%b9%89%e0%b8%b2%e0%b8%87','','','2024-08-22 06:54:42','2024-08-22 06:54:42','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/01.-โครงสร้าง.pdf',0,'attachment','application/pdf',0),
(273,1,'2024-08-22 06:54:47','2024-08-22 06:54:47','','02. ข้อมูลผู้บริหาร','','inherit','','closed','','02-%e0%b8%82%e0%b9%89%e0%b8%ad%e0%b8%a1%e0%b8%b9%e0%b8%a5%e0%b8%9c%e0%b8%b9%e0%b9%89%e0%b8%9a%e0%b8%a3%e0%b8%b4%e0%b8%ab%e0%b8%b2%e0%b8%a3','','','2024-08-22 06:54:47','2024-08-22 06:54:47','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/02.-ข้อมูลผู้บริหาร.pdf',0,'attachment','application/pdf',0),
(275,1,'2024-08-22 06:55:10','2024-08-22 06:55:10','','04. ข้อมูลการติดต่อ','','inherit','','closed','','04-%e0%b8%82%e0%b9%89%e0%b8%ad%e0%b8%a1%e0%b8%b9%e0%b8%a5%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%95%e0%b8%b4%e0%b8%94%e0%b8%95%e0%b9%88%e0%b8%ad','','','2024-08-22 06:55:10','2024-08-22 06:55:10','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/04.-ข้อมูลการติดต่อ.pdf',0,'attachment','application/pdf',0),
(276,1,'2024-08-22 06:55:31','2024-08-22 06:55:31','','11. คู่มือหรือแนวทางการให้บริการสําหรับผู้รับบริการหรือผู้มาติดต่อ','','inherit','','closed','','11-%e0%b8%84%e0%b8%b9%e0%b9%88%e0%b8%a1%e0%b8%b7%e0%b8%ad%e0%b8%ab%e0%b8%a3%e0%b8%b7%e0%b8%ad%e0%b9%81%e0%b8%99%e0%b8%a7%e0%b8%97%e0%b8%b2%e0%b8%87%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b9%83%e0%b8%ab','','','2024-08-22 06:55:31','2024-08-22 06:55:31','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/11.-คู่มือหรือแนวทางการให้บริการสําหรับผู้รับบริการหรือผู้มาติดต่อ.pdf',0,'attachment','application/pdf',0),
(277,1,'2024-08-22 06:55:38','2024-08-22 06:55:38','','13. E–Service','','inherit','','closed','','13-e-service','','','2024-08-22 06:55:38','2024-08-22 06:55:38','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/13.-E–Service.pdf',0,'attachment','application/pdf',0),
(278,1,'2024-08-22 06:55:39','2024-08-22 06:55:39','','20. ประมวลจริยธรรมสําหรับเจ้าหน้าที่ของรัฐ','','inherit','','closed','','20-%e0%b8%9b%e0%b8%a3%e0%b8%b0%e0%b8%a1%e0%b8%a7%e0%b8%a5%e0%b8%88%e0%b8%a3%e0%b8%b4%e0%b8%a2%e0%b8%98%e0%b8%a3%e0%b8%a3%e0%b8%a1%e0%b8%aa%e0%b9%8d%e0%b8%b2%e0%b8%ab%e0%b8%a3%e0%b8%b1%e0%b8%9a','','','2024-08-22 06:55:39','2024-08-22 06:55:39','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/20.-ประมวลจริยธรรมสําหรับเจ้าหน้าที่ของรัฐ.pdf',0,'attachment','application/pdf',0),
(279,1,'2024-08-22 06:55:40','2024-08-22 06:55:40','','22. แนวปฏิบัติการจัดการเรื่องร้องเรียนการทุจริตและประพฤติมิชอบ','','inherit','','closed','','22-%e0%b9%81%e0%b8%99%e0%b8%a7%e0%b8%9b%e0%b8%8f%e0%b8%b4%e0%b8%9a%e0%b8%b1%e0%b8%95%e0%b8%b4%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%88%e0%b8%b1%e0%b8%94%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b9%80%e0%b8%a3','','','2024-08-22 06:55:40','2024-08-22 06:55:40','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/22.-แนวปฏิบัติการจัดการเรื่องร้องเรียนการทุจริตและประพฤติมิชอบ.pdf',0,'attachment','application/pdf',0),
(280,1,'2024-08-22 06:55:41','2024-08-22 06:55:41','','23. ช่องทางแจ้งเรื่องร้องเรียนการทุจริตและประพฤติมิชอบ','','inherit','','closed','','23-%e0%b8%8a%e0%b9%88%e0%b8%ad%e0%b8%87%e0%b8%97%e0%b8%b2%e0%b8%87%e0%b9%81%e0%b8%88%e0%b9%89%e0%b8%87%e0%b9%80%e0%b8%a3%e0%b8%b7%e0%b9%88%e0%b8%ad%e0%b8%87%e0%b8%a3%e0%b9%89%e0%b8%ad%e0%b8%87','','','2024-08-22 06:55:41','2024-08-22 06:55:41','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/23.-ช่องทางแจ้งเรื่องร้องเรียนการทุจริตและประพฤติมิชอบ.pdf',0,'attachment','application/pdf',0),
(281,1,'2024-08-22 06:55:42','2024-08-22 06:55:42','','24. ข้อมูลสถิติเรื่องร้องเรียนการทุจริตและประพฤติมิชอบ','','inherit','','closed','','24-%e0%b8%82%e0%b9%89%e0%b8%ad%e0%b8%a1%e0%b8%b9%e0%b8%a5%e0%b8%aa%e0%b8%96%e0%b8%b4%e0%b8%95%e0%b8%b4%e0%b9%80%e0%b8%a3%e0%b8%b7%e0%b9%88%e0%b8%ad%e0%b8%87%e0%b8%a3%e0%b9%89%e0%b8%ad%e0%b8%87','','','2024-08-22 06:55:42','2024-08-22 06:55:42','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/24.-ข้อมูลสถิติเรื่องร้องเรียนการทุจริตและประพฤติมิชอบ.pdf',0,'attachment','application/pdf',0),
(282,1,'2024-08-22 06:55:48','2024-08-22 06:55:48','','25. การเปิดโอกาสให้เกิดการมีส่วนร่วม','','inherit','','closed','','25-%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b9%80%e0%b8%9b%e0%b8%b4%e0%b8%94%e0%b9%82%e0%b8%ad%e0%b8%81%e0%b8%b2%e0%b8%aa%e0%b9%83%e0%b8%ab%e0%b9%89%e0%b9%80%e0%b8%81%e0%b8%b4%e0%b8%94%e0%b8%81%e0%b8%b2','','','2024-08-22 06:55:48','2024-08-22 06:55:48','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/25.-การเปิดโอกาสให้เกิดการมีส่วนร่วม.pdf',0,'attachment','application/pdf',0),
(283,1,'2024-08-22 06:55:49','2024-08-22 06:55:49','','26. ประกาศเจตนารมณ์นโยบาย No GiftPolicy จากการปฏิบัติหน้าที่','','inherit','','closed','','26-%e0%b8%9b%e0%b8%a3%e0%b8%b0%e0%b8%81%e0%b8%b2%e0%b8%a8%e0%b9%80%e0%b8%88%e0%b8%95%e0%b8%99%e0%b8%b2%e0%b8%a3%e0%b8%a1%e0%b8%93%e0%b9%8c%e0%b8%99%e0%b9%82%e0%b8%a2%e0%b8%9a%e0%b8%b2%e0%b8%a2-no-gif','','','2024-08-22 06:55:49','2024-08-22 06:55:49','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/26.-ประกาศเจตนารมณ์นโยบาย-No-GiftPolicy-จากการปฏิบัติหน้าที่.pdf',0,'attachment','application/pdf',0),
(284,1,'2024-08-22 06:55:51','2024-08-22 06:55:51','','27. การสร้างวัฒนธรรมNo Gift Policy','','inherit','','closed','','27-%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%aa%e0%b8%a3%e0%b9%89%e0%b8%b2%e0%b8%87%e0%b8%a7%e0%b8%b1%e0%b8%92%e0%b8%99%e0%b8%98%e0%b8%a3%e0%b8%a3%e0%b8%a1no-gift-policy','','','2024-08-22 06:55:51','2024-08-22 06:55:51','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/27.-การสร้างวัฒนธรรมNo-Gift-Policy.pdf',0,'attachment','application/pdf',0),
(285,1,'2024-08-22 06:55:52','2024-08-22 06:55:52','','28. รายงานผลตามนโยบาย No GiftPolicy','','inherit','','closed','','28-%e0%b8%a3%e0%b8%b2%e0%b8%a2%e0%b8%87%e0%b8%b2%e0%b8%99%e0%b8%9c%e0%b8%a5%e0%b8%95%e0%b8%b2%e0%b8%a1%e0%b8%99%e0%b9%82%e0%b8%a2%e0%b8%9a%e0%b8%b2%e0%b8%a2-no-giftpolicy','','','2024-08-22 06:55:52','2024-08-22 06:55:52','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/28.-รายงานผลตามนโยบาย-No-GiftPolicy.pdf',0,'attachment','application/pdf',0),
(286,1,'2024-08-22 06:55:53','2024-08-22 06:55:53','','29. รายงานการรับทรัพย์สินหรือประโยชน์อื่นใดโดยธรรมจรรยา','','inherit','','closed','','29-%e0%b8%a3%e0%b8%b2%e0%b8%a2%e0%b8%87%e0%b8%b2%e0%b8%99%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%a3%e0%b8%b1%e0%b8%9a%e0%b8%97%e0%b8%a3%e0%b8%b1%e0%b8%9e%e0%b8%a2%e0%b9%8c%e0%b8%aa%e0%b8%b4%e0%b8%99','','','2024-08-22 06:55:53','2024-08-22 06:55:53','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/29.-รายงานการรับทรัพย์สินหรือประโยชน์อื่นใดโดยธรรมจรรยา.pdf',0,'attachment','application/pdf',0),
(287,1,'2024-08-22 06:55:56','2024-08-22 06:55:56','','wordpress','','inherit','','closed','','wordpress','','','2024-08-22 06:55:56','2024-08-22 06:55:56','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/wordpress.pdf',0,'attachment','application/pdf',0),
(288,1,'2024-08-22 06:55:59','2024-08-22 06:55:59','','02. ข้อมูลผู้บริหาร','','inherit','','closed','','02-%e0%b8%82%e0%b9%89%e0%b8%ad%e0%b8%a1%e0%b8%b9%e0%b8%a5%e0%b8%9c%e0%b8%b9%e0%b9%89%e0%b8%9a%e0%b8%a3%e0%b8%b4%e0%b8%ab%e0%b8%b2%e0%b8%a3-2','','','2024-08-22 06:55:59','2024-08-22 06:55:59','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/02.-ข้อมูลผู้บริหาร-1.pdf',0,'attachment','application/pdf',0),
(300,1,'2024-08-22 08:41:03','2024-08-22 08:41:03','','07. แผนยุทธศาสตร์หรือแผนพัฒนาหน่วยงาน','','inherit','','closed','','07-%e0%b9%81%e0%b8%9c%e0%b8%99%e0%b8%a2%e0%b8%b8%e0%b8%97%e0%b8%98%e0%b8%a8%e0%b8%b2%e0%b8%aa%e0%b8%95%e0%b8%a3%e0%b9%8c%e0%b8%ab%e0%b8%a3%e0%b8%b7%e0%b8%ad%e0%b9%81%e0%b8%9c%e0%b8%99%e0%b8%9e','','','2024-08-22 08:41:03','2024-08-22 08:41:03','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/07.-แผนยุทธศาสตร์หรือแผนพัฒนาหน่วยงาน.pdf',0,'attachment','application/pdf',0),
(301,1,'2024-08-22 08:41:09','2024-08-22 08:41:09','','08. แผนและความก้าวหน้าในการดําเนินงานและการใช้งบประมาณประจําปี','','inherit','','closed','','08-%e0%b9%81%e0%b8%9c%e0%b8%99%e0%b9%81%e0%b8%a5%e0%b8%b0%e0%b8%84%e0%b8%a7%e0%b8%b2%e0%b8%a1%e0%b8%81%e0%b9%89%e0%b8%b2%e0%b8%a7%e0%b8%ab%e0%b8%99%e0%b9%89%e0%b8%b2%e0%b9%83%e0%b8%99%e0%b8%81','','','2024-08-22 08:41:09','2024-08-22 08:41:09','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/08.-แผนและความก้าวหน้าในการดําเนินงานและการใช้งบประมาณประจําปี.pdf',0,'attachment','application/pdf',0),
(302,1,'2024-08-22 08:41:17','2024-08-22 08:41:17','','09. รายงานผลการดําเนินงานประจําปี','','inherit','','closed','','09-%e0%b8%a3%e0%b8%b2%e0%b8%a2%e0%b8%87%e0%b8%b2%e0%b8%99%e0%b8%9c%e0%b8%a5%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%94%e0%b9%8d%e0%b8%b2%e0%b9%80%e0%b8%99%e0%b8%b4%e0%b8%99%e0%b8%87%e0%b8%b2%e0%b8%99','','','2024-08-22 08:41:17','2024-08-22 08:41:17','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/09.-รายงานผลการดําเนินงานประจําปี.pdf',0,'attachment','application/pdf',0),
(317,1,'2024-08-23 04:05:25','2024-08-23 04:05:25','<!-- wp:image {\"id\":null,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} --><figure class=\"wp-block-image size-large\"><img src=\"http://ank.ssk.in.th/wp-content/themes/twentyten/images/patterns/pattern-barn.jpg\" alt=\"A red barn with a white roof in a field.\" /><figcaption><em>An old barn we passed on the drive</em></figcaption></figure><!-- /wp:image --><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":60}}} --><h2 style=\"font-size:60px\">A Weekend Away</h2><!-- /wp:heading --><!-- wp:paragraph --><p>It’s amazing what a good weekend can do. After a tough couple weeks at work, I knew I needed to get away and be in nature. My partner and I decided to take a long weekend and stay in a cabin in the woods. We packed up after work on Friday and drove out into the country, passing through fields full of horses, old farms, and quaint little town squares. It was an idyllic drive. Eventually, we reached our destination and unpacked the car. We couldn’t wait to cook up a simple dinner and then relax by the fireplace.</p><!-- /wp:paragraph -->','ประวัติของโรงเรียน','','publish','closed','closed','','introduction-copy','','','2024-08-23 04:06:19','2024-08-23 04:06:19','',0,'http://ank.ssk.in.th/index.php/2024/08/23/introduction-copy/',0,'wp_block','',0),
(318,1,'2024-08-23 04:06:19','2024-08-23 04:06:19','<!-- wp:image {\"id\":null,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} --><figure class=\"wp-block-image size-large\"><img src=\"http://ank.ssk.in.th/wp-content/themes/twentyten/images/patterns/pattern-barn.jpg\" alt=\"A red barn with a white roof in a field.\" /><figcaption><em>An old barn we passed on the drive</em></figcaption></figure><!-- /wp:image --><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":60}}} --><h2 style=\"font-size:60px\">A Weekend Away</h2><!-- /wp:heading --><!-- wp:paragraph --><p>It’s amazing what a good weekend can do. After a tough couple weeks at work, I knew I needed to get away and be in nature. My partner and I decided to take a long weekend and stay in a cabin in the woods. We packed up after work on Friday and drove out into the country, passing through fields full of horses, old farms, and quaint little town squares. It was an idyllic drive. Eventually, we reached our destination and unpacked the car. We couldn’t wait to cook up a simple dinner and then relax by the fireplace.</p><!-- /wp:paragraph -->','ประวัติของโรงเรียน','','inherit','closed','closed','','317-revision-v1','','','2024-08-23 04:06:19','2024-08-23 04:06:19','',317,'http://ank.ssk.in.th/?p=318',0,'revision','',0),
(324,1,'2024-08-23 04:18:05','2024-08-23 04:18:05','','IMG_5049','','inherit','','closed','','img_5049','','','2024-08-23 04:18:05','2024-08-23 04:18:05','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/IMG_5049.jpg',0,'attachment','image/jpeg',0),
(330,1,'2024-08-23 04:33:42','2024-08-23 04:33:42','','IMG_3907','','inherit','','closed','','img_3907','','','2024-08-23 04:33:42','2024-08-23 04:33:42','',0,'http://ank.ssk.in.th/wp-content/uploads/2022/08/IMG_3907.jpg',0,'attachment','image/jpeg',0),
(339,1,'2024-08-23 04:42:18','2024-08-23 04:42:18','','IMG_3907','','inherit','','closed','','img_3907-2','','','2024-08-23 04:42:18','2024-08-23 04:42:18','',0,'http://ank.ssk.in.th/wp-content/uploads/2022/08/IMG_3907-1.jpg',0,'attachment','image/jpeg',0),
(343,1,'2024-08-23 04:52:19','2024-08-23 04:52:19','','IMG_5208','','inherit','','closed','','img_5208','','','2024-08-23 04:52:19','2024-08-23 04:52:19','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/IMG_5208.jpg',0,'attachment','image/jpeg',0),
(344,1,'2024-08-23 04:53:25','2024-08-23 04:53:25','http://ank.ssk.in.th/wp-content/uploads/2024/08/cropped-IMG_5208-1.jpg','cropped-IMG_5208-1.jpg','','inherit','closed','closed','','cropped-img_5208-jpg','','','2024-08-23 04:53:25','2024-08-23 04:53:25','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/cropped-IMG_5208.jpg',0,'attachment','image/jpeg',0),
(346,1,'2024-08-23 04:54:23','2024-08-23 04:54:23','http://ank.ssk.in.th/wp-content/uploads/2024/08/cropped-IMG_5208-1.jpg','cropped-cropped-IMG_5208-1.jpg','','inherit','','closed','','cropped-cropped-img_5208-1-jpg','','','2024-08-23 04:54:23','2024-08-23 04:54:23','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/cropped-cropped-IMG_5208-1.jpg',0,'attachment','image/jpeg',0),
(349,1,'2024-08-23 06:18:28','2024-08-23 06:18:28','<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">วันแม่ของเมืองไทย</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|medium-gray\"}}}},\"textColor\":\"medium-gray\",\"fontSize\":\"small\"} -->\n<p class=\"has-medium-gray-color has-text-color has-link-color has-small-font-size\">             วันที่สำคัญในหลายประเทศทั่วโลกจัดขึ้นเพื่อให้เกียรติแม่และความเป็นแม่ ในประเทศไทยวันแม่แห่งชาติ ตรงกับวันที่ 12 สิงหาคม เป็นวันแม่แห่งชาติ ของทุกปี ซึ่งตรงกับวันพระราชสมภพของสมเด็จพระนางเจ้าสิริกิติ์ พระบรมราชินีนาถ ซึ่งพระองค์ทรงเป็นแม่ที่จะต้องดูแลพระราชโอรสแลเพระราชธิดา พระองค์ยังทรงดูแลลูกๆของแผ่นดินซึ่งเป็นปวงชนชาวไทย และทรงพระราชกรณียกิจอย่างไม่เคยย่อท้อ เคียงข้างพระบาทสมเด็จพระเจ้าอยู่หัว ซึ่งพระองค์ทรงเป็นแม่ของแผ่นดินที่ประชาชนชาวไทยให้ความจงรักภักดี ซึ่งดอกที่ใช้แทนสัญลักษณ์ของวันแม่คือ ดอกมะลิ เพราะเป็นดอกไม้ที่มีสีขาวบริสุทธิ์ เปรียบได้กับความรักอันบริสุทธิ์ลึกซึ้งที่แม่มีต่อลูก เป็นความรักที่เปี่ยมไปด้วยความเมตตากรุณาที่ไม่มีที่สิ้นสุด</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:generateblocks/container {\"uniqueId\":\"03e05088\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:generateblocks/container {\"uniqueId\":\"390653f7\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:generateblocks/container {\"uniqueId\":\"2729486f\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:generateblocks/container {\"uniqueId\":\"3deefee6\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:generateblocks/image {\"uniqueId\":\"e9e39551\",\"mediaId\":339,\"openInNewWindow\":true,\"sizeSlug\":\"medium\",\"alignment\":\"center\",\"blockVersion\":2} -->\n<figure class=\"gb-block-image gb-block-image-e9e39551\"><a href=\"https://www.facebook.com/share/fUud4qDohGAtYKDw/\" target=\"_blank\" rel=\"noopener noreferrer\"><img class=\"gb-image gb-image-e9e39551\" src=\"http://ank.ssk.in.th/wp-content/uploads/2022/08/IMG_3907-1-300x225.jpg\" alt=\"\" title=\"IMG_3907\"/></a></figure>\n<!-- /wp:generateblocks/image -->\n<!-- /wp:generateblocks/container -->\n<!-- /wp:generateblocks/container -->\n<!-- /wp:generateblocks/container -->\n<!-- /wp:generateblocks/container -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','กิจกรรม “วันแม่แห่งชาติ” 2567','','publish','closed','','','%e0%b8%81%e0%b8%b4%e0%b8%88%e0%b8%81%e0%b8%a3%e0%b8%a3%e0%b8%a1-%e0%b8%a7%e0%b8%b1%e0%b8%99%e0%b9%81%e0%b8%a1%e0%b9%88%e0%b9%81%e0%b8%ab%e0%b9%88%e0%b8%87%e0%b8%8a%e0%b8%b2%e0%b8%95%e0%b8%b4','','','2024-08-23 08:17:51','2024-08-23 08:17:51','',0,'http://ank.ssk.in.th/?p=349',0,'post','',0),
(350,1,'2024-08-23 06:17:32','2024-08-23 06:17:32','','IMG_3907','','inherit','','closed','','img_3907-3','','','2024-08-23 06:17:32','2024-08-23 06:17:32','',349,'http://ank.ssk.in.th/wp-content/uploads/2024/08/IMG_3907.jpg',0,'attachment','image/jpeg',0),
(351,1,'2024-08-23 06:18:28','2024-08-23 06:18:28','<!-- wp:generateblocks/headline {\"uniqueId\":\"7f903682\",\"blockVersion\":3} -->\n<h2 class=\"gb-headline gb-headline-7f903682 gb-headline-text\"><a href=\"https://www.facebook.com/share/fUud4qDohGAtYKDw/\">กิจกรรม “วันแม่แห่งชาติ” 2567</a></h2>\n<!-- /wp:generateblocks/headline -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">วันแม่ของเมืองไทย</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|blue\"}}}},\"textColor\":\"blue\",\"fontSize\":\"small\"} -->\n<p class=\"has-blue-color has-text-color has-link-color has-small-font-size\">วันที่สำคัญในหลายประเทศทั่วโลกจัดขึ้นเพื่อให้เกียรติแม่และความเป็นแม่ ในประเทศไทยวันแม่แห่งชาติ ตรงกับวันที่ 12 สิงหาคม เป็นวันแม่แห่งชาติ ของทุกปี ซึ่งตรงกับวันพระราชสมภพของสมเด็จพระนางเจ้าสิริกิติ์ พระบรมราชินีนาถ ซึ่งพระองค์ทรงเป็นแม่ที่จะต้องดูแลพระราชโอรสแลเพระราชธิดา พระองค์ยังทรงดูแลลูกๆของแผ่นดินซึ่งเป็นปวงชนชาวไทย และทรงพระราชกรณียกิจอย่างไม่เคยย่อท้อ เคียงข้างพระบาทสมเด็จพระเจ้าอยู่หัว ซึ่งพระองค์ทรงเป็นแม่ของแผ่นดินที่ประชาชนชาวไทยให้ความจงรักภักดี ซึ่งดอกที่ใช้แทนสัญลักษณ์ของวันแม่คือ ดอกมะลิ เพราะเป็นดอกไม้ที่มีสีขาวบริสุทธิ์ เปรียบได้กับความรักอันบริสุทธิ์ลึกซึ้งที่แม่มีต่อลูก เป็นความรักที่เปี่ยมไปด้วยความเมตตากรุณาที่ไม่มีที่สิ้นสุด</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:generateblocks/container {\"uniqueId\":\"03e05088\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:generateblocks/container {\"uniqueId\":\"390653f7\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:generateblocks/container {\"uniqueId\":\"2729486f\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:generateblocks/image {\"uniqueId\":\"e9e39551\",\"mediaId\":339,\"sizeSlug\":\"full\",\"blockVersion\":2} -->\n<figure class=\"gb-block-image gb-block-image-e9e39551\"><img class=\"gb-image gb-image-e9e39551\" src=\"http://ank.ssk.in.th/wp-content/uploads/2022/08/IMG_3907-1.jpg\" alt=\"\" title=\"IMG_3907\"/></figure>\n<!-- /wp:generateblocks/image -->\n<!-- /wp:generateblocks/container -->\n<!-- /wp:generateblocks/container -->\n<!-- /wp:generateblocks/container -->','กิจกรรม “วันแม่แห่งชาติ” 2567','','inherit','closed','closed','','349-revision-v1','','','2024-08-23 06:18:28','2024-08-23 06:18:28','',349,'http://ank.ssk.in.th/?p=351',0,'revision','',0),
(353,1,'2024-08-23 06:20:20','2024-08-23 06:20:20','<!-- wp:generateblocks/headline {\"uniqueId\":\"7f903682\",\"blockVersion\":3} -->\n<h2 class=\"gb-headline gb-headline-7f903682 gb-headline-text\"><a href=\"https://www.facebook.com/share/fUud4qDohGAtYKDw/\">กิจกรรม “วันแม่แห่งชาติ” 2567</a></h2>\n<!-- /wp:generateblocks/headline -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">วันแม่ของเมืองไทย</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|blue\"}}}},\"textColor\":\"blue\",\"fontSize\":\"small\"} -->\n<p class=\"has-blue-color has-text-color has-link-color has-small-font-size\">วันที่สำคัญในหลายประเทศทั่วโลกจัดขึ้นเพื่อให้เกียรติแม่และความเป็นแม่ ในประเทศไทยวันแม่แห่งชาติ ตรงกับวันที่ 12 สิงหาคม เป็นวันแม่แห่งชาติ ของทุกปี ซึ่งตรงกับวันพระราชสมภพของสมเด็จพระนางเจ้าสิริกิติ์ พระบรมราชินีนาถ ซึ่งพระองค์ทรงเป็นแม่ที่จะต้องดูแลพระราชโอรสแลเพระราชธิดา พระองค์ยังทรงดูแลลูกๆของแผ่นดินซึ่งเป็นปวงชนชาวไทย และทรงพระราชกรณียกิจอย่างไม่เคยย่อท้อ เคียงข้างพระบาทสมเด็จพระเจ้าอยู่หัว ซึ่งพระองค์ทรงเป็นแม่ของแผ่นดินที่ประชาชนชาวไทยให้ความจงรักภักดี ซึ่งดอกที่ใช้แทนสัญลักษณ์ของวันแม่คือ ดอกมะลิ เพราะเป็นดอกไม้ที่มีสีขาวบริสุทธิ์ เปรียบได้กับความรักอันบริสุทธิ์ลึกซึ้งที่แม่มีต่อลูก เป็นความรักที่เปี่ยมไปด้วยความเมตตากรุณาที่ไม่มีที่สิ้นสุด</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:generateblocks/container {\"uniqueId\":\"03e05088\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:generateblocks/container {\"uniqueId\":\"390653f7\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:generateblocks/container {\"uniqueId\":\"2729486f\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:generateblocks/container {\"uniqueId\":\"3deefee6\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:generateblocks/image {\"uniqueId\":\"e9e39551\",\"mediaId\":339,\"sizeSlug\":\"medium\",\"alignment\":\"center\",\"blockVersion\":2} -->\n<figure class=\"gb-block-image gb-block-image-e9e39551\"><img class=\"gb-image gb-image-e9e39551\" src=\"http://ank.ssk.in.th/wp-content/uploads/2022/08/IMG_3907-1-300x225.jpg\" alt=\"\" title=\"IMG_3907\"/></figure>\n<!-- /wp:generateblocks/image -->\n<!-- /wp:generateblocks/container -->\n<!-- /wp:generateblocks/container -->\n<!-- /wp:generateblocks/container -->\n<!-- /wp:generateblocks/container -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','กิจกรรม “วันแม่แห่งชาติ” 2567','','inherit','closed','closed','','349-revision-v1','','','2024-08-23 06:20:20','2024-08-23 06:20:20','',349,'http://ank.ssk.in.th/?p=353',0,'revision','',0),
(354,1,'2024-08-23 06:29:37','2024-08-23 06:29:37','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":355,\"width\":\"252px\",\"height\":\"auto\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"align\":\"center\"} -->\n<figure class=\"wp-block-image aligncenter size-large is-resized\"><img src=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/456044563_1150500889800519_3469159541631171774_n-1024x768.jpg\" alt=\"\" class=\"wp-image-355\" style=\"width:252px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|medium-gray\"}}}},\"textColor\":\"medium-gray\",\"fontSize\":\"small\"} -->\n<p class=\"has-medium-gray-color has-text-color has-link-color has-small-font-size\">ขอแสดงความยินดีกับ เด็กหญิงชุติกานต์ พงษ์บรรเทา และคุณครูนาฎสุดา บุญหวาน ครูผู้ฝึกซ้อมได้รับรางวัล ลำดับที่ 9 จากทั้งหมด 50 โรงเรียนในการแข่งขันตอบปัญหาด้านสหกรณ์ ประจําปี 2567ณ สหกรณ์ออมทรัพย์ครูศรีสะเกษ จํากัดในวันที่ 17 สิงหาคม 67</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','ขอแสดงความยินดี','','publish','closed','','','%e0%b8%82%e0%b8%ad%e0%b9%81%e0%b8%aa%e0%b8%94%e0%b8%87%e0%b8%84%e0%b8%a7%e0%b8%b2%e0%b8%a1%e0%b8%a2%e0%b8%b4%e0%b8%99%e0%b8%94%e0%b8%b5','','','2024-08-23 08:17:20','2024-08-23 08:17:20','',0,'http://ank.ssk.in.th/?p=354',0,'post','',0),
(355,1,'2024-08-23 06:25:24','2024-08-23 06:25:24','','456044563_1150500889800519_3469159541631171774_n','','inherit','','closed','','456044563_1150500889800519_3469159541631171774_n','','','2024-08-23 06:25:24','2024-08-23 06:25:24','',354,'http://ank.ssk.in.th/wp-content/uploads/2024/08/456044563_1150500889800519_3469159541631171774_n.jpg',0,'attachment','image/jpeg',0),
(356,1,'2024-08-23 06:29:37','2024-08-23 06:29:37','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":355,\"width\":\"252px\",\"height\":\"auto\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"align\":\"center\"} -->\n<figure class=\"wp-block-image aligncenter size-large is-resized\"><img src=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/456044563_1150500889800519_3469159541631171774_n-1024x768.jpg\" alt=\"\" class=\"wp-image-355\" style=\"width:252px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|blue\"}}}},\"textColor\":\"blue\"} -->\n<p class=\"has-blue-color has-text-color has-link-color\">ขอแสดงความยินดีกับ เด็กหญิงชุติกานต์ พงษ์บรรเทา และคุณครูนาฎสุดา บุญหวาน ครูผู้ฝึกซ้อมได้รับรางวัล ลำดับที่ 9 จากทั้งหมด 50 โรงเรียนในการแข่งขันตอบปัญหาด้านสหกรณ์ ประจําปี 2567ณ สหกรณ์ออมทรัพย์ครูศรีสะเกษ จํากัดในวันที่ 17 สิงหาคม 67</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','ขอแสดงความยินดี','','inherit','closed','closed','','354-revision-v1','','','2024-08-23 06:29:37','2024-08-23 06:29:37','',354,'http://ank.ssk.in.th/?p=356',0,'revision','',0),
(357,1,'2024-08-23 06:33:15','2024-08-23 06:33:15','<!-- wp:generateblocks/headline {\"uniqueId\":\"7f903682\",\"blockVersion\":3} -->\n<h2 class=\"gb-headline gb-headline-7f903682 gb-headline-text\"><a href=\"https://www.facebook.com/share/fUud4qDohGAtYKDw/\">กิจกรรม “วันแม่แห่งชาติ” 2567</a></h2>\n<!-- /wp:generateblocks/headline -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">วันแม่ของเมืองไทย</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|blue\"}}}},\"textColor\":\"blue\",\"fontSize\":\"small\"} -->\n<p class=\"has-blue-color has-text-color has-link-color has-small-font-size\">วันที่สำคัญในหลายประเทศทั่วโลกจัดขึ้นเพื่อให้เกียรติแม่และความเป็นแม่ ในประเทศไทยวันแม่แห่งชาติ ตรงกับวันที่ 12 สิงหาคม เป็นวันแม่แห่งชาติ ของทุกปี ซึ่งตรงกับวันพระราชสมภพของสมเด็จพระนางเจ้าสิริกิติ์ พระบรมราชินีนาถ ซึ่งพระองค์ทรงเป็นแม่ที่จะต้องดูแลพระราชโอรสแลเพระราชธิดา พระองค์ยังทรงดูแลลูกๆของแผ่นดินซึ่งเป็นปวงชนชาวไทย และทรงพระราชกรณียกิจอย่างไม่เคยย่อท้อ เคียงข้างพระบาทสมเด็จพระเจ้าอยู่หัว ซึ่งพระองค์ทรงเป็นแม่ของแผ่นดินที่ประชาชนชาวไทยให้ความจงรักภักดี ซึ่งดอกที่ใช้แทนสัญลักษณ์ของวันแม่คือ ดอกมะลิ เพราะเป็นดอกไม้ที่มีสีขาวบริสุทธิ์ เปรียบได้กับความรักอันบริสุทธิ์ลึกซึ้งที่แม่มีต่อลูก เป็นความรักที่เปี่ยมไปด้วยความเมตตากรุณาที่ไม่มีที่สิ้นสุด</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:generateblocks/container {\"uniqueId\":\"03e05088\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:generateblocks/container {\"uniqueId\":\"390653f7\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:generateblocks/container {\"uniqueId\":\"2729486f\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:generateblocks/container {\"uniqueId\":\"3deefee6\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:generateblocks/image {\"uniqueId\":\"e9e39551\",\"mediaId\":339,\"sizeSlug\":\"medium\",\"alignment\":\"center\",\"blockVersion\":2} -->\n<figure class=\"gb-block-image gb-block-image-e9e39551\"><img class=\"gb-image gb-image-e9e39551\" src=\"http://ank.ssk.in.th/wp-content/uploads/2022/08/IMG_3907-1-300x225.jpg\" alt=\"\" title=\"IMG_3907\"/></figure>\n<!-- /wp:generateblocks/image -->\n<!-- /wp:generateblocks/container -->\n<!-- /wp:generateblocks/container -->\n<!-- /wp:generateblocks/container -->\n<!-- /wp:generateblocks/container -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','','','inherit','closed','closed','','349-revision-v1','','','2024-08-23 06:33:15','2024-08-23 06:33:15','',349,'http://ank.ssk.in.th/?p=357',0,'revision','',0),
(359,1,'2024-08-23 06:35:40','2024-08-23 06:35:40','<!-- wp:generateblocks/headline {\"uniqueId\":\"7f903682\",\"blockVersion\":3} -->\n<h2 class=\"gb-headline gb-headline-7f903682 gb-headline-text\"><a href=\"https://www.facebook.com/share/fUud4qDohGAtYKDw/\">กิจกรรม “วันแม่แห่งชาติ” 2567</a></h2>\n<!-- /wp:generateblocks/headline -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">วันแม่ของเมืองไทย</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|blue\"}}}},\"textColor\":\"blue\",\"fontSize\":\"small\"} -->\n<p class=\"has-blue-color has-text-color has-link-color has-small-font-size\">วันที่สำคัญในหลายประเทศทั่วโลกจัดขึ้นเพื่อให้เกียรติแม่และความเป็นแม่ ในประเทศไทยวันแม่แห่งชาติ ตรงกับวันที่ 12 สิงหาคม เป็นวันแม่แห่งชาติ ของทุกปี ซึ่งตรงกับวันพระราชสมภพของสมเด็จพระนางเจ้าสิริกิติ์ พระบรมราชินีนาถ ซึ่งพระองค์ทรงเป็นแม่ที่จะต้องดูแลพระราชโอรสแลเพระราชธิดา พระองค์ยังทรงดูแลลูกๆของแผ่นดินซึ่งเป็นปวงชนชาวไทย และทรงพระราชกรณียกิจอย่างไม่เคยย่อท้อ เคียงข้างพระบาทสมเด็จพระเจ้าอยู่หัว ซึ่งพระองค์ทรงเป็นแม่ของแผ่นดินที่ประชาชนชาวไทยให้ความจงรักภักดี ซึ่งดอกที่ใช้แทนสัญลักษณ์ของวันแม่คือ ดอกมะลิ เพราะเป็นดอกไม้ที่มีสีขาวบริสุทธิ์ เปรียบได้กับความรักอันบริสุทธิ์ลึกซึ้งที่แม่มีต่อลูก เป็นความรักที่เปี่ยมไปด้วยความเมตตากรุณาที่ไม่มีที่สิ้นสุด</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:generateblocks/container {\"uniqueId\":\"03e05088\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:generateblocks/container {\"uniqueId\":\"390653f7\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:generateblocks/container {\"uniqueId\":\"2729486f\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:generateblocks/container {\"uniqueId\":\"3deefee6\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:generateblocks/image {\"uniqueId\":\"e9e39551\",\"mediaId\":339,\"openInNewWindow\":true,\"sizeSlug\":\"medium\",\"alignment\":\"center\",\"blockVersion\":2} -->\n<figure class=\"gb-block-image gb-block-image-e9e39551\"><a href=\"https://www.facebook.com/share/fUud4qDohGAtYKDw/\" target=\"_blank\" rel=\"noopener noreferrer\"><img class=\"gb-image gb-image-e9e39551\" src=\"http://ank.ssk.in.th/wp-content/uploads/2022/08/IMG_3907-1-300x225.jpg\" alt=\"\" title=\"IMG_3907\"/></a></figure>\n<!-- /wp:generateblocks/image -->\n<!-- /wp:generateblocks/container -->\n<!-- /wp:generateblocks/container -->\n<!-- /wp:generateblocks/container -->\n<!-- /wp:generateblocks/container -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','กิจกรรม “วันแม่แห่งชาติ” 2567','','inherit','closed','closed','','349-revision-v1','','','2024-08-23 06:35:40','2024-08-23 06:35:40','',349,'http://ank.ssk.in.th/?p=359',0,'revision','',0),
(360,1,'2024-08-23 06:35:53','2024-08-23 06:35:53','<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">วันแม่ของเมืองไทย</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|blue\"}}}},\"textColor\":\"blue\",\"fontSize\":\"small\"} -->\n<p class=\"has-blue-color has-text-color has-link-color has-small-font-size\">วันที่สำคัญในหลายประเทศทั่วโลกจัดขึ้นเพื่อให้เกียรติแม่และความเป็นแม่ ในประเทศไทยวันแม่แห่งชาติ ตรงกับวันที่ 12 สิงหาคม เป็นวันแม่แห่งชาติ ของทุกปี ซึ่งตรงกับวันพระราชสมภพของสมเด็จพระนางเจ้าสิริกิติ์ พระบรมราชินีนาถ ซึ่งพระองค์ทรงเป็นแม่ที่จะต้องดูแลพระราชโอรสแลเพระราชธิดา พระองค์ยังทรงดูแลลูกๆของแผ่นดินซึ่งเป็นปวงชนชาวไทย และทรงพระราชกรณียกิจอย่างไม่เคยย่อท้อ เคียงข้างพระบาทสมเด็จพระเจ้าอยู่หัว ซึ่งพระองค์ทรงเป็นแม่ของแผ่นดินที่ประชาชนชาวไทยให้ความจงรักภักดี ซึ่งดอกที่ใช้แทนสัญลักษณ์ของวันแม่คือ ดอกมะลิ เพราะเป็นดอกไม้ที่มีสีขาวบริสุทธิ์ เปรียบได้กับความรักอันบริสุทธิ์ลึกซึ้งที่แม่มีต่อลูก เป็นความรักที่เปี่ยมไปด้วยความเมตตากรุณาที่ไม่มีที่สิ้นสุด</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:generateblocks/container {\"uniqueId\":\"03e05088\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:generateblocks/container {\"uniqueId\":\"390653f7\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:generateblocks/container {\"uniqueId\":\"2729486f\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:generateblocks/container {\"uniqueId\":\"3deefee6\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:generateblocks/image {\"uniqueId\":\"e9e39551\",\"mediaId\":339,\"openInNewWindow\":true,\"sizeSlug\":\"medium\",\"alignment\":\"center\",\"blockVersion\":2} -->\n<figure class=\"gb-block-image gb-block-image-e9e39551\"><a href=\"https://www.facebook.com/share/fUud4qDohGAtYKDw/\" target=\"_blank\" rel=\"noopener noreferrer\"><img class=\"gb-image gb-image-e9e39551\" src=\"http://ank.ssk.in.th/wp-content/uploads/2022/08/IMG_3907-1-300x225.jpg\" alt=\"\" title=\"IMG_3907\"/></a></figure>\n<!-- /wp:generateblocks/image -->\n<!-- /wp:generateblocks/container -->\n<!-- /wp:generateblocks/container -->\n<!-- /wp:generateblocks/container -->\n<!-- /wp:generateblocks/container -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','กิจกรรม “วันแม่แห่งชาติ” 2567','','inherit','closed','closed','','349-revision-v1','','','2024-08-23 06:35:53','2024-08-23 06:35:53','',349,'http://ank.ssk.in.th/?p=360',0,'revision','',0),
(361,1,'2024-08-23 06:35:59','2024-08-23 06:35:59','<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">วันแม่ของเมืองไทย</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|blue\"}}}},\"textColor\":\"blue\",\"fontSize\":\"small\"} -->\n<p class=\"has-blue-color has-text-color has-link-color has-small-font-size\">             วันที่สำคัญในหลายประเทศทั่วโลกจัดขึ้นเพื่อให้เกียรติแม่และความเป็นแม่ ในประเทศไทยวันแม่แห่งชาติ ตรงกับวันที่ 12 สิงหาคม เป็นวันแม่แห่งชาติ ของทุกปี ซึ่งตรงกับวันพระราชสมภพของสมเด็จพระนางเจ้าสิริกิติ์ พระบรมราชินีนาถ ซึ่งพระองค์ทรงเป็นแม่ที่จะต้องดูแลพระราชโอรสแลเพระราชธิดา พระองค์ยังทรงดูแลลูกๆของแผ่นดินซึ่งเป็นปวงชนชาวไทย และทรงพระราชกรณียกิจอย่างไม่เคยย่อท้อ เคียงข้างพระบาทสมเด็จพระเจ้าอยู่หัว ซึ่งพระองค์ทรงเป็นแม่ของแผ่นดินที่ประชาชนชาวไทยให้ความจงรักภักดี ซึ่งดอกที่ใช้แทนสัญลักษณ์ของวันแม่คือ ดอกมะลิ เพราะเป็นดอกไม้ที่มีสีขาวบริสุทธิ์ เปรียบได้กับความรักอันบริสุทธิ์ลึกซึ้งที่แม่มีต่อลูก เป็นความรักที่เปี่ยมไปด้วยความเมตตากรุณาที่ไม่มีที่สิ้นสุด</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:generateblocks/container {\"uniqueId\":\"03e05088\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:generateblocks/container {\"uniqueId\":\"390653f7\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:generateblocks/container {\"uniqueId\":\"2729486f\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:generateblocks/container {\"uniqueId\":\"3deefee6\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:generateblocks/image {\"uniqueId\":\"e9e39551\",\"mediaId\":339,\"openInNewWindow\":true,\"sizeSlug\":\"medium\",\"alignment\":\"center\",\"blockVersion\":2} -->\n<figure class=\"gb-block-image gb-block-image-e9e39551\"><a href=\"https://www.facebook.com/share/fUud4qDohGAtYKDw/\" target=\"_blank\" rel=\"noopener noreferrer\"><img class=\"gb-image gb-image-e9e39551\" src=\"http://ank.ssk.in.th/wp-content/uploads/2022/08/IMG_3907-1-300x225.jpg\" alt=\"\" title=\"IMG_3907\"/></a></figure>\n<!-- /wp:generateblocks/image -->\n<!-- /wp:generateblocks/container -->\n<!-- /wp:generateblocks/container -->\n<!-- /wp:generateblocks/container -->\n<!-- /wp:generateblocks/container -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','กิจกรรม “วันแม่แห่งชาติ” 2567','','inherit','closed','closed','','349-revision-v1','','','2024-08-23 06:35:59','2024-08-23 06:35:59','',349,'http://ank.ssk.in.th/?p=361',0,'revision','',0),
(362,1,'2024-08-23 06:36:43','2024-08-23 06:36:43','<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">วันแม่ของเมืองไทย</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|medium-gray\"}}}},\"textColor\":\"medium-gray\",\"fontSize\":\"small\"} -->\n<p class=\"has-medium-gray-color has-text-color has-link-color has-small-font-size\">             วันที่สำคัญในหลายประเทศทั่วโลกจัดขึ้นเพื่อให้เกียรติแม่และความเป็นแม่ ในประเทศไทยวันแม่แห่งชาติ ตรงกับวันที่ 12 สิงหาคม เป็นวันแม่แห่งชาติ ของทุกปี ซึ่งตรงกับวันพระราชสมภพของสมเด็จพระนางเจ้าสิริกิติ์ พระบรมราชินีนาถ ซึ่งพระองค์ทรงเป็นแม่ที่จะต้องดูแลพระราชโอรสแลเพระราชธิดา พระองค์ยังทรงดูแลลูกๆของแผ่นดินซึ่งเป็นปวงชนชาวไทย และทรงพระราชกรณียกิจอย่างไม่เคยย่อท้อ เคียงข้างพระบาทสมเด็จพระเจ้าอยู่หัว ซึ่งพระองค์ทรงเป็นแม่ของแผ่นดินที่ประชาชนชาวไทยให้ความจงรักภักดี ซึ่งดอกที่ใช้แทนสัญลักษณ์ของวันแม่คือ ดอกมะลิ เพราะเป็นดอกไม้ที่มีสีขาวบริสุทธิ์ เปรียบได้กับความรักอันบริสุทธิ์ลึกซึ้งที่แม่มีต่อลูก เป็นความรักที่เปี่ยมไปด้วยความเมตตากรุณาที่ไม่มีที่สิ้นสุด</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:generateblocks/container {\"uniqueId\":\"03e05088\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:generateblocks/container {\"uniqueId\":\"390653f7\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:generateblocks/container {\"uniqueId\":\"2729486f\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:generateblocks/container {\"uniqueId\":\"3deefee6\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:generateblocks/image {\"uniqueId\":\"e9e39551\",\"mediaId\":339,\"openInNewWindow\":true,\"sizeSlug\":\"medium\",\"alignment\":\"center\",\"blockVersion\":2} -->\n<figure class=\"gb-block-image gb-block-image-e9e39551\"><a href=\"https://www.facebook.com/share/fUud4qDohGAtYKDw/\" target=\"_blank\" rel=\"noopener noreferrer\"><img class=\"gb-image gb-image-e9e39551\" src=\"http://ank.ssk.in.th/wp-content/uploads/2022/08/IMG_3907-1-300x225.jpg\" alt=\"\" title=\"IMG_3907\"/></a></figure>\n<!-- /wp:generateblocks/image -->\n<!-- /wp:generateblocks/container -->\n<!-- /wp:generateblocks/container -->\n<!-- /wp:generateblocks/container -->\n<!-- /wp:generateblocks/container -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','กิจกรรม “วันแม่แห่งชาติ” 2567','','inherit','closed','closed','','349-revision-v1','','','2024-08-23 06:36:43','2024-08-23 06:36:43','',349,'http://ank.ssk.in.th/?p=362',0,'revision','',0),
(364,1,'2024-08-23 06:59:14','2024-08-23 06:59:14','','34. มาตรการส่งเสริมคุณธรรมและความโปร่งใสภายในหน่วยงาน','','inherit','','closed','','34-%e0%b8%a1%e0%b8%b2%e0%b8%95%e0%b8%a3%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%aa%e0%b9%88%e0%b8%87%e0%b9%80%e0%b8%aa%e0%b8%a3%e0%b8%b4%e0%b8%a1%e0%b8%84%e0%b8%b8%e0%b8%93%e0%b8%98%e0%b8%a3%e0%b8%a3','','','2024-08-23 06:59:14','2024-08-23 06:59:14','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/34.-มาตรการส่งเสริมคุณธรรมและความโปร่งใสภายในหน่วยงาน.pdf',0,'attachment','application/pdf',0),
(365,1,'2024-08-23 06:59:15','2024-08-23 06:59:15','','35. รายงานผลการดําเนินการเพื่อส่งเสริมคุณธรรมและความโปร่งใสภายในหน่วยงาน','','inherit','','closed','','35-%e0%b8%a3%e0%b8%b2%e0%b8%a2%e0%b8%87%e0%b8%b2%e0%b8%99%e0%b8%9c%e0%b8%a5%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%94%e0%b9%8d%e0%b8%b2%e0%b9%80%e0%b8%99%e0%b8%b4%e0%b8%99%e0%b8%81%e0%b8%b2%e0%b8%a3','','','2024-08-23 06:59:15','2024-08-23 06:59:15','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/35.-รายงานผลการดําเนินการเพื่อส่งเสริมคุณธรรมและความโปร่งใสภายในหน่วยงาน.pdf',0,'attachment','application/pdf',0),
(366,1,'2024-08-23 06:59:27','2024-08-23 06:59:27','','19. รายงานผลการบริหารและพัฒนาทรัพยากรบุคคลประจําปี','','inherit','','closed','','19-%e0%b8%a3%e0%b8%b2%e0%b8%a2%e0%b8%87%e0%b8%b2%e0%b8%99%e0%b8%9c%e0%b8%a5%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%9a%e0%b8%a3%e0%b8%b4%e0%b8%ab%e0%b8%b2%e0%b8%a3%e0%b9%81%e0%b8%a5%e0%b8%b0%e0%b8%9e','','','2024-08-23 06:59:27','2024-08-23 06:59:27','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/19.-รายงานผลการบริหารและพัฒนาทรัพยากรบุคคลประจําปี.pdf',0,'attachment','application/pdf',0),
(367,1,'2024-08-23 06:59:27','2024-08-23 06:59:27','','18. แผนการบริหารและพัฒนาทรัพยากรบุคคล','','inherit','','closed','','18-%e0%b9%81%e0%b8%9c%e0%b8%99%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%9a%e0%b8%a3%e0%b8%b4%e0%b8%ab%e0%b8%b2%e0%b8%a3%e0%b9%81%e0%b8%a5%e0%b8%b0%e0%b8%9e%e0%b8%b1%e0%b8%92%e0%b8%99%e0%b8%b2%e0%b8%97','','','2024-08-23 06:59:27','2024-08-23 06:59:27','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/18.-แผนการบริหารและพัฒนาทรัพยากรบุคคล.pdf',0,'attachment','application/pdf',0),
(368,1,'2024-08-23 06:59:28','2024-08-23 06:59:28','','17. รายงานสรุปผลการจัดซื้อจัดจ้างหรือการจัดหาพัสดุประจําปี','','inherit','','closed','','17-%e0%b8%a3%e0%b8%b2%e0%b8%a2%e0%b8%87%e0%b8%b2%e0%b8%99%e0%b8%aa%e0%b8%a3%e0%b8%b8%e0%b8%9b%e0%b8%9c%e0%b8%a5%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%88%e0%b8%b1%e0%b8%94%e0%b8%8b%e0%b8%b7%e0%b9%89','','','2024-08-23 06:59:28','2024-08-23 06:59:28','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/17.-รายงานสรุปผลการจัดซื้อจัดจ้างหรือการจัดหาพัสดุประจําปี.pdf',0,'attachment','application/pdf',0),
(369,1,'2024-08-23 06:59:28','2024-08-23 06:59:28','','16. ความก้าวหน้าการจัดซื้อจัดจ้างหรือการจัดหาพัสดุ','','inherit','','closed','','16-%e0%b8%84%e0%b8%a7%e0%b8%b2%e0%b8%a1%e0%b8%81%e0%b9%89%e0%b8%b2%e0%b8%a7%e0%b8%ab%e0%b8%99%e0%b9%89%e0%b8%b2%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%88%e0%b8%b1%e0%b8%94%e0%b8%8b%e0%b8%b7%e0%b9%89','','','2024-08-23 06:59:28','2024-08-23 06:59:28','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/16.-ความก้าวหน้าการจัดซื้อจัดจ้างหรือการจัดหาพัสดุ.pdf',0,'attachment','application/pdf',0),
(370,1,'2024-08-23 06:59:29','2024-08-23 06:59:29','','14. รายการการจัดซื้อจัดจ้างหรือการจัดหาพัสดุ','','inherit','','closed','','14-%e0%b8%a3%e0%b8%b2%e0%b8%a2%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%88%e0%b8%b1%e0%b8%94%e0%b8%8b%e0%b8%b7%e0%b9%89%e0%b8%ad%e0%b8%88%e0%b8%b1%e0%b8%94%e0%b8%88%e0%b9%89','','','2024-08-23 06:59:29','2024-08-23 06:59:29','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/14.-รายการการจัดซื้อจัดจ้างหรือการจัดหาพัสดุ.pdf',0,'attachment','application/pdf',0),
(371,1,'2024-08-23 06:59:31','2024-08-23 06:59:31','','15. ประกาศต่าง ๆเกี่ยวกับการจัดซื้อจัดจ้างหรือการจัดหาพัสดุ','','inherit','','closed','','15-%e0%b8%9b%e0%b8%a3%e0%b8%b0%e0%b8%81%e0%b8%b2%e0%b8%a8%e0%b8%95%e0%b9%88%e0%b8%b2%e0%b8%87-%e0%b9%86%e0%b9%80%e0%b8%81%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%a7%e0%b8%81%e0%b8%b1%e0%b8%9a%e0%b8%81','','','2024-08-23 06:59:31','2024-08-23 06:59:31','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/15.-ประกาศต่าง-ๆเกี่ยวกับการจัดซื้อจัดจ้างหรือการจัดหาพัสดุ.pdf',0,'attachment','application/pdf',0),
(372,1,'2024-08-23 06:59:32','2024-08-23 06:59:32','','33. รายงานผลการดําเนินการป้องกันการทุจริตประจําปี','','inherit','','closed','','33-%e0%b8%a3%e0%b8%b2%e0%b8%a2%e0%b8%87%e0%b8%b2%e0%b8%99%e0%b8%9c%e0%b8%a5%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%94%e0%b9%8d%e0%b8%b2%e0%b9%80%e0%b8%99%e0%b8%b4%e0%b8%99%e0%b8%81%e0%b8%b2%e0%b8%a3','','','2024-08-23 06:59:32','2024-08-23 06:59:32','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/33.-รายงานผลการดําเนินการป้องกันการทุจริตประจําปี.pdf',0,'attachment','application/pdf',0),
(373,1,'2024-08-23 06:59:34','2024-08-23 06:59:34','','32. แผนปฏิบัติการป้องกันการทุจริต','','inherit','','closed','','32-%e0%b9%81%e0%b8%9c%e0%b8%99%e0%b8%9b%e0%b8%8f%e0%b8%b4%e0%b8%9a%e0%b8%b1%e0%b8%95%e0%b8%b4%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%9b%e0%b9%89%e0%b8%ad%e0%b8%87%e0%b8%81%e0%b8%b1%e0%b8%99%e0%b8%81','','','2024-08-23 06:59:34','2024-08-23 06:59:34','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/32.-แผนปฏิบัติการป้องกันการทุจริต.pdf',0,'attachment','application/pdf',0),
(374,1,'2024-08-23 06:59:37','2024-08-23 06:59:37','','21. การขับเคลื่อนจริยธรรม','','inherit','','closed','','21-%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%82%e0%b8%b1%e0%b8%9a%e0%b9%80%e0%b8%84%e0%b8%a5%e0%b8%b7%e0%b9%88%e0%b8%ad%e0%b8%99%e0%b8%88%e0%b8%a3%e0%b8%b4%e0%b8%a2%e0%b8%98%e0%b8%a3%e0%b8%a3%e0%b8%a1','','','2024-08-23 06:59:37','2024-08-23 06:59:37','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/21.-การขับเคลื่อนจริยธรรม.pdf',0,'attachment','application/pdf',0),
(375,1,'2024-08-23 06:59:39','2024-08-23 06:59:39','','12. ข้อมูลสถิติการให้บริการ','','inherit','','closed','','12-%e0%b8%82%e0%b9%89%e0%b8%ad%e0%b8%a1%e0%b8%b9%e0%b8%a5%e0%b8%aa%e0%b8%96%e0%b8%b4%e0%b8%95%e0%b8%b4%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b9%83%e0%b8%ab%e0%b9%89%e0%b8%9a%e0%b8%a3%e0%b8%b4%e0%b8%81','','','2024-08-23 06:59:39','2024-08-23 06:59:39','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/12.-ข้อมูลสถิติการให้บริการ.pdf',0,'attachment','application/pdf',0),
(384,1,'2024-08-23 08:14:02','2024-08-23 08:14:02','','05. ข่าวประชาสัมพันธ์','','inherit','','closed','','05-%e0%b8%82%e0%b9%88%e0%b8%b2%e0%b8%a7%e0%b8%9b%e0%b8%a3%e0%b8%b0%e0%b8%8a%e0%b8%b2%e0%b8%aa%e0%b8%b1%e0%b8%a1%e0%b8%9e%e0%b8%b1%e0%b8%99%e0%b8%98%e0%b9%8c','','','2024-08-23 08:14:02','2024-08-23 08:14:02','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/05.-ข่าวประชาสัมพันธ์.pdf',0,'attachment','application/pdf',0),
(385,1,'2024-08-23 08:14:02','2024-08-23 08:14:02','','06. Q&A','','inherit','','closed','','06-qa','','','2024-08-23 08:14:02','2024-08-23 08:14:02','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/06.-QA.pdf',0,'attachment','application/pdf',0),
(388,1,'2024-08-23 08:17:07','2024-08-23 08:17:07','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":355,\"width\":\"252px\",\"height\":\"auto\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"align\":\"center\"} -->\n<figure class=\"wp-block-image aligncenter size-large is-resized\"><img src=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/456044563_1150500889800519_3469159541631171774_n-1024x768.jpg\" alt=\"\" class=\"wp-image-355\" style=\"width:252px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|blue\"}}}},\"textColor\":\"blue\",\"fontSize\":\"small\"} -->\n<p class=\"has-blue-color has-text-color has-link-color has-small-font-size\">ขอแสดงความยินดีกับ เด็กหญิงชุติกานต์ พงษ์บรรเทา และคุณครูนาฎสุดา บุญหวาน ครูผู้ฝึกซ้อมได้รับรางวัล ลำดับที่ 9 จากทั้งหมด 50 โรงเรียนในการแข่งขันตอบปัญหาด้านสหกรณ์ ประจําปี 2567ณ สหกรณ์ออมทรัพย์ครูศรีสะเกษ จํากัดในวันที่ 17 สิงหาคม 67</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','ขอแสดงความยินดี','','inherit','closed','closed','','354-revision-v1','','','2024-08-23 08:17:07','2024-08-23 08:17:07','',354,'http://ank.ssk.in.th/?p=388',0,'revision','',0),
(389,1,'2024-08-23 08:17:20','2024-08-23 08:17:20','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":355,\"width\":\"252px\",\"height\":\"auto\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"align\":\"center\"} -->\n<figure class=\"wp-block-image aligncenter size-large is-resized\"><img src=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/456044563_1150500889800519_3469159541631171774_n-1024x768.jpg\" alt=\"\" class=\"wp-image-355\" style=\"width:252px;height:auto\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|medium-gray\"}}}},\"textColor\":\"medium-gray\",\"fontSize\":\"small\"} -->\n<p class=\"has-medium-gray-color has-text-color has-link-color has-small-font-size\">ขอแสดงความยินดีกับ เด็กหญิงชุติกานต์ พงษ์บรรเทา และคุณครูนาฎสุดา บุญหวาน ครูผู้ฝึกซ้อมได้รับรางวัล ลำดับที่ 9 จากทั้งหมด 50 โรงเรียนในการแข่งขันตอบปัญหาด้านสหกรณ์ ประจําปี 2567ณ สหกรณ์ออมทรัพย์ครูศรีสะเกษ จํากัดในวันที่ 17 สิงหาคม 67</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','ขอแสดงความยินดี','','inherit','closed','closed','','354-revision-v1','','','2024-08-23 08:17:20','2024-08-23 08:17:20','',354,'http://ank.ssk.in.th/?p=389',0,'revision','',0),
(394,1,'2024-08-26 03:31:46','2024-08-26 03:31:46','<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|blue\"}}}},\"textColor\":\"blue\"} -->\n<p class=\"has-blue-color has-text-color has-link-color\">http://ank.ssk.in.th/?page_id=200</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>http://ank.ssk.in.th/?page_id=200</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','ทดสอบระบบ','','publish','closed','closed','','%e0%b8%97%e0%b8%94%e0%b8%aa%e0%b8%ad%e0%b8%9a%e0%b8%a3%e0%b8%b0%e0%b8%9a%e0%b8%9a','','','2024-08-26 03:31:46','2024-08-26 03:31:46','',0,'http://ank.ssk.in.th/?page_id=394',0,'page','',0),
(395,1,'2024-08-26 03:31:46','2024-08-26 03:31:46','<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|blue\"}}}},\"textColor\":\"blue\"} -->\n<p class=\"has-blue-color has-text-color has-link-color\">http://ank.ssk.in.th/?page_id=200</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>http://ank.ssk.in.th/?page_id=200</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','ทดสอบระบบ','','inherit','closed','closed','','394-revision-v1','','','2024-08-26 03:31:46','2024-08-26 03:31:46','',394,'http://ank.ssk.in.th/?p=395',0,'revision','',0),
(397,1,'2024-08-26 03:34:52','2024-08-26 03:34:52','','ทดสอบระบบ','','inherit','closed','closed','','394-autosave-v1','','','2024-08-26 03:34:52','2024-08-26 03:34:52','',394,'http://ank.ssk.in.th/?p=397',0,'revision','',0),
(398,1,'2024-08-26 04:00:06','2024-08-26 04:00:06','','ประวัติโรงเรียนโรงเรียนอนุบาลโนนคูณ','','inherit','','closed','','%e0%b8%9b%e0%b8%a3%e0%b8%b0%e0%b8%a7%e0%b8%b1%e0%b8%95%e0%b8%b4%e0%b9%82%e0%b8%a3%e0%b8%87%e0%b9%80%e0%b8%a3%e0%b8%b5%e0%b8%a2%e0%b8%99%e0%b9%82%e0%b8%a3%e0%b8%87%e0%b9%80%e0%b8%a3%e0%b8%b5%e0%b8%a2','','','2024-08-26 04:00:06','2024-08-26 04:00:06','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/ประวัติโรงเรียนโรงเรียนอนุบาลโนนคูณ.pdf',0,'attachment','application/pdf',0),
(400,1,'2024-08-26 04:13:42','2024-08-26 04:13:42','','วิสัยทัศน์โรงเรียน','','inherit','','closed','','%e0%b8%a7%e0%b8%b4%e0%b8%aa%e0%b8%b1%e0%b8%a2%e0%b8%97%e0%b8%b1%e0%b8%a8%e0%b8%99%e0%b9%8c%e0%b9%82%e0%b8%a3%e0%b8%87%e0%b9%80%e0%b8%a3%e0%b8%b5%e0%b8%a2%e0%b8%99','','','2024-08-26 04:13:42','2024-08-26 04:13:42','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/วิสัยทัศน์โรงเรียน.pdf',0,'attachment','application/pdf',0),
(402,1,'2024-08-27 03:13:44','2024-08-27 03:13:44','','03. อํานาจหน้าที่','','inherit','','closed','','03-%e0%b8%ad%e0%b9%8d%e0%b8%b2%e0%b8%99%e0%b8%b2%e0%b8%88%e0%b8%ab%e0%b8%99%e0%b9%89%e0%b8%b2%e0%b8%97%e0%b8%b5%e0%b9%88-2','','','2024-08-27 03:13:44','2024-08-27 03:13:44','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/03.-อํานาจหน้าที่-1.pdf',0,'attachment','application/pdf',0),
(403,1,'2024-08-27 03:19:29','2024-08-27 03:19:29','','10. คู่มือหรือแนวทางการปฏิบัติงานของเจ้าหน้าที่','','inherit','','closed','','10-%e0%b8%84%e0%b8%b9%e0%b9%88%e0%b8%a1%e0%b8%b7%e0%b8%ad%e0%b8%ab%e0%b8%a3%e0%b8%b7%e0%b8%ad%e0%b9%81%e0%b8%99%e0%b8%a7%e0%b8%97%e0%b8%b2%e0%b8%87%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%9b%e0%b8%8f','','','2024-08-27 03:19:29','2024-08-27 03:19:29','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/10.-คู่มือหรือแนวทางการปฏิบัติงานของเจ้าหน้าที่.pdf',0,'attachment','application/pdf',0),
(404,1,'2024-08-27 03:19:48','2024-08-27 03:19:48','','30. การประเมินความเสี่ยงการทุจริตในประเด็นที่เกี่ยวข้องกับสินบน','','inherit','','closed','','30-%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%9b%e0%b8%a3%e0%b8%b0%e0%b9%80%e0%b8%a1%e0%b8%b4%e0%b8%99%e0%b8%84%e0%b8%a7%e0%b8%b2%e0%b8%a1%e0%b9%80%e0%b8%aa%e0%b8%b5%e0%b9%88%e0%b8%a2%e0%b8%87%e0%b8%81','','','2024-08-27 03:19:48','2024-08-27 03:19:48','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/30.-การประเมินความเสี่ยงการทุจริตในประเด็นที่เกี่ยวข้องกับสินบน.pdf',0,'attachment','application/pdf',0),
(405,1,'2024-08-27 03:19:48','2024-08-27 03:19:48','','31. รายงานผลการดําเนินการเพื่อจัดการความเสี่ยงการทุจริตและประพฤติมิชอบประจําปี','','inherit','','closed','','31-%e0%b8%a3%e0%b8%b2%e0%b8%a2%e0%b8%87%e0%b8%b2%e0%b8%99%e0%b8%9c%e0%b8%a5%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%94%e0%b9%8d%e0%b8%b2%e0%b9%80%e0%b8%99%e0%b8%b4%e0%b8%99%e0%b8%81%e0%b8%b2%e0%b8%a3','','','2024-08-27 03:19:48','2024-08-27 03:19:48','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/31.-รายงานผลการดําเนินการเพื่อจัดการความเสี่ยงการทุจริตและประพฤติมิชอบประจําปี.pdf',0,'attachment','application/pdf',0),
(412,1,'2024-08-27 04:01:45','2024-08-27 04:01:45','<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|blue\"}}}},\"textColor\":\"blue\",\"fontSize\":\"small\"} -->\n<p class=\"has-blue-color has-text-color has-link-color has-small-font-size\">โครงการพัฒนากระบวนการเรียนการสอนที่เน้นผู้เรียนเป็นสำคัญ ระหว่างวันที่ 17-18 สิงหาคม 2567 คลิกดูที่นี่ <a href=\"https://www.facebook.com/share/3qXT8Dq8EYNrkSGX\">https://www.facebook.com/share/3qXT8Dq8EYNrkSGX</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:generateblocks/container {\"uniqueId\":\"40ea4921\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:image {\"id\":421,\"width\":\"338px\",\"height\":\"auto\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"center\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/457150231_1158053099045298_5805883337294085059_n.jpg\" alt=\"\" class=\"wp-image-421\" style=\"width:338px;height:auto\"/></figure>\n<!-- /wp:image -->\n<!-- /wp:generateblocks/container -->','โครงการพัฒนากระบวนการเรียนการสอนที่เน้นผู้เรียนเป็นสำคัญ ระหว่างวันที่ 17-18 สิงหาคม 2567','','publish','closed','','','%e0%b9%82%e0%b8%84%e0%b8%a3%e0%b8%87%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b8%9e%e0%b8%92%e0%b8%99%e0%b8%b2%e0%b8%81%e0%b8%a3%e0%b8%b0%e0%b8%9a%e0%b8%a7%e0%b8%99%e0%b8%81%e0%b8%b2%e0%b8%a3%e0%b9%80','','','2024-08-27 04:21:19','2024-08-27 04:21:19','',0,'http://ank.ssk.in.th/?p=412',0,'post','',0),
(413,1,'2024-08-27 03:55:53','2024-08-27 03:55:53','','457050057_1158052385712036_1271832281998934664_n','','inherit','','closed','','457050057_1158052385712036_1271832281998934664_n','','','2024-08-27 03:55:53','2024-08-27 03:55:53','',412,'http://ank.ssk.in.th/wp-content/uploads/2024/08/457050057_1158052385712036_1271832281998934664_n.jpg',0,'attachment','image/jpeg',0),
(414,1,'2024-08-27 03:55:54','2024-08-27 03:55:54','','457086142_1158055472378394_6919257840095237910_n','','inherit','','closed','','457086142_1158055472378394_6919257840095237910_n','','','2024-08-27 03:55:54','2024-08-27 03:55:54','',412,'http://ank.ssk.in.th/wp-content/uploads/2024/08/457086142_1158055472378394_6919257840095237910_n.jpg',0,'attachment','image/jpeg',0),
(415,1,'2024-08-27 03:55:55','2024-08-27 03:55:55','','457103045_1158053952378546_2017232069349464678_n','','inherit','','closed','','457103045_1158053952378546_2017232069349464678_n','','','2024-08-27 03:55:55','2024-08-27 03:55:55','',412,'http://ank.ssk.in.th/wp-content/uploads/2024/08/457103045_1158053952378546_2017232069349464678_n.jpg',0,'attachment','image/jpeg',0),
(416,1,'2024-08-27 03:55:56','2024-08-27 03:55:56','','457135917_1158055582378383_1882074074804084603_n','','inherit','','closed','','457135917_1158055582378383_1882074074804084603_n','','','2024-08-27 03:55:56','2024-08-27 03:55:56','',412,'http://ank.ssk.in.th/wp-content/uploads/2024/08/457135917_1158055582378383_1882074074804084603_n.jpg',0,'attachment','image/jpeg',0),
(417,1,'2024-08-27 03:55:57','2024-08-27 03:55:57','','457144052_1158055619045046_2177853130911210115_n','','inherit','','closed','','457144052_1158055619045046_2177853130911210115_n','','','2024-08-27 03:55:57','2024-08-27 03:55:57','',412,'http://ank.ssk.in.th/wp-content/uploads/2024/08/457144052_1158055619045046_2177853130911210115_n.jpg',0,'attachment','image/jpeg',0),
(418,1,'2024-08-27 03:55:58','2024-08-27 03:55:58','','457205887_1158055799045028_2539035665849888800_n','','inherit','','closed','','457205887_1158055799045028_2539035665849888800_n','','','2024-08-27 03:55:58','2024-08-27 03:55:58','',412,'http://ank.ssk.in.th/wp-content/uploads/2024/08/457205887_1158055799045028_2539035665849888800_n.jpg',0,'attachment','image/jpeg',0),
(419,1,'2024-08-27 03:55:59','2024-08-27 03:55:59','','457297087_1158052949045313_4474356114551042580_n','','inherit','','closed','','457297087_1158052949045313_4474356114551042580_n','','','2024-08-27 03:55:59','2024-08-27 03:55:59','',412,'http://ank.ssk.in.th/wp-content/uploads/2024/08/457297087_1158052949045313_4474356114551042580_n.jpg',0,'attachment','image/jpeg',0),
(420,1,'2024-08-27 03:55:59','2024-08-27 03:55:59','','457327433_1158055785711696_4054317702331054974_n','','inherit','','closed','','457327433_1158055785711696_4054317702331054974_n','','','2024-08-27 03:55:59','2024-08-27 03:55:59','',412,'http://ank.ssk.in.th/wp-content/uploads/2024/08/457327433_1158055785711696_4054317702331054974_n.jpg',0,'attachment','image/jpeg',0),
(421,1,'2024-08-27 03:57:59','2024-08-27 03:57:59','','457150231_1158053099045298_5805883337294085059_n','','inherit','','closed','','457150231_1158053099045298_5805883337294085059_n','','','2024-08-27 03:57:59','2024-08-27 03:57:59','',412,'http://ank.ssk.in.th/wp-content/uploads/2024/08/457150231_1158053099045298_5805883337294085059_n.jpg',0,'attachment','image/jpeg',0),
(422,1,'2024-08-27 04:01:45','2024-08-27 04:01:45','<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|blue\"}}}},\"textColor\":\"blue\"} -->\n<p class=\"has-blue-color has-text-color has-link-color\">โครงการพัฒนากระบวนการเรียนการสอนที่เน้นผู้เรียนเป็นสำคัญ ระหว่างวันที่ 17-18 สิงหาคม 2567</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"linkTo\":\"none\",\"sizeSlug\":\"full\",\"align\":\"center\"} -->\n<figure class=\"wp-block-gallery aligncenter has-nested-images columns-default is-cropped\"><!-- wp:image {\"id\":421,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/457150231_1158053099045298_5805883337294085059_n.jpg\" alt=\"\" class=\"wp-image-421\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','โครงการพัฒนากระบวนการเรียนการสอนที่เน้นผู้เรียนเป็นสำคัญ ระหว่างวันที่ 17-18 สิงหาคม 2567','','inherit','closed','closed','','412-revision-v1','','','2024-08-27 04:01:45','2024-08-27 04:01:45','',412,'http://ank.ssk.in.th/?p=422',0,'revision','',0),
(424,1,'2024-08-27 04:05:55','2024-08-27 04:05:55','<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|blue\"}}}},\"textColor\":\"blue\"} -->\n<p class=\"has-blue-color has-text-color has-link-color\">โครงการพัฒนากระบวนการเรียนการสอนที่เน้นผู้เรียนเป็นสำคัญ ระหว่างวันที่ 17-18 สิงหาคม 2567</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaId\":421,\"mediaType\":\"image\",\"className\":\"is-style-default\"} -->\n<div class=\"wp-block-media-text is-stacked-on-mobile is-style-default\"><figure class=\"wp-block-media-text__media\"><img src=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/457150231_1158053099045298_5805883337294085059_n.jpg\" alt=\"\" class=\"wp-image-421 size-full\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"เนื้อหา...\"} -->\n<p class=\"has-text-align-center\">โครงการพัฒนากระบวนการเรียนการสอนที่เน้นผู้เรียนเป็นสำคัญ ระหว่างวันที่ 17-18 สิงหาคม 2567</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->','โครงการพัฒนากระบวนการเรียนการสอนที่เน้นผู้เรียนเป็นสำคัญ ระหว่างวันที่ 17-18 สิงหาคม 2567','','inherit','closed','closed','','412-revision-v1','','','2024-08-27 04:05:55','2024-08-27 04:05:55','',412,'http://ank.ssk.in.th/?p=424',0,'revision','',0),
(425,1,'2024-08-27 04:07:37','2024-08-27 04:07:37','<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|blue\"}}}},\"textColor\":\"blue\"} -->\n<p class=\"has-blue-color has-text-color has-link-color\">โครงการพัฒนากระบวนการเรียนการสอนที่เน้นผู้เรียนเป็นสำคัญ ระหว่างวันที่ 17-18 สิงหาคม 2567</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:media-text {\"mediaId\":421,\"mediaType\":\"image\",\"className\":\"is-style-default\"} -->\n<div class=\"wp-block-media-text is-stacked-on-mobile is-style-default\"><figure class=\"wp-block-media-text__media\"><img src=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/457150231_1158053099045298_5805883337294085059_n.jpg\" alt=\"\" class=\"wp-image-421 size-full\"/></figure><div class=\"wp-block-media-text__content\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"เนื้อหา...\"} -->\n<p class=\"has-text-align-center\">โครงการพัฒนากระบวนการเรียนการสอนที่เน้นผู้เรียนเป็นสำคัญ ระหว่างวันที่ 17-18 สิงหาคม 2567</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.facebook.com/share/3qXT8Dq8EYNrkSGX\">https://www.facebook.com/share/3qXT8Dq8EYNrkSGX</a></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->','โครงการพัฒนากระบวนการเรียนการสอนที่เน้นผู้เรียนเป็นสำคัญ ระหว่างวันที่ 17-18 สิงหาคม 2567','','inherit','closed','closed','','412-revision-v1','','','2024-08-27 04:07:37','2024-08-27 04:07:37','',412,'http://ank.ssk.in.th/?p=425',0,'revision','',0),
(426,1,'2024-08-27 04:09:20','2024-08-27 04:09:20','<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|blue\"}}}},\"textColor\":\"blue\"} -->\n<p class=\"has-blue-color has-text-color has-link-color\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"placeholder\":\"เนื้อหา...\"} -->\n<p class=\"has-text-align-left\">โครงการพัฒนากระบวนการเรียนการสอนที่เน้นผู้เรียนเป็นสำคัญ ระหว่างวันที่ 17-18 สิงหาคม 2567</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.facebook.com/share/3qXT8Dq8EYNrkSGX\">https://www.facebook.com/share/3qXT8Dq8EYNrkSGX</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:generateblocks/container {\"uniqueId\":\"40ea4921\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:image {\"id\":421,\"width\":\"338px\",\"height\":\"auto\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"center\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/457150231_1158053099045298_5805883337294085059_n.jpg\" alt=\"\" class=\"wp-image-421\" style=\"width:338px;height:auto\"/></figure>\n<!-- /wp:image -->\n<!-- /wp:generateblocks/container -->','โครงการพัฒนากระบวนการเรียนการสอนที่เน้นผู้เรียนเป็นสำคัญ ระหว่างวันที่ 17-18 สิงหาคม 2567','','inherit','closed','closed','','412-revision-v1','','','2024-08-27 04:09:20','2024-08-27 04:09:20','',412,'http://ank.ssk.in.th/?p=426',0,'revision','',0),
(427,1,'2024-08-27 04:15:08','2024-08-27 04:15:08','<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">ขอขอบคุณ ดต.ฟ้าผ่อนผัน ขันแก้ว (ครูแดร์) จาก สถานีตำรวจภูธรโนนคูณ มาให้ความรู้ เรื่องบุหรี่ไฟฟ้า ยาเสพติด และกฎจราจร 27/09/67 คลิกดูที่นี่ <a href=\"https://www.facebook.com/share/wt6yYnV53rSqvwqm\">https://www.facebook.com/share/wt6yYnV53rSqvwqm</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":429,\"width\":\"233px\",\"height\":\"auto\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"align\":\"center\"} -->\n<figure class=\"wp-block-image aligncenter size-large is-resized\"><img src=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/457196917_1158060895711185_8365916979118315743_n-edited.jpg\" alt=\"\" class=\"wp-image-429\" style=\"width:233px;height:auto\"/></figure>\n<!-- /wp:image -->','ครูแดร์ หรือ D.A.R.E. (Drug Abuse Resistance Education)','','publish','closed','','','%e0%b8%84%e0%b8%a3%e0%b8%b9%e0%b9%81%e0%b8%94%e0%b8%a3%e0%b9%8c-%e0%b8%ab%e0%b8%a3%e0%b8%b7%e0%b8%ad-d-a-r-e-drug-abuse-resistance-education','','','2024-08-27 04:20:27','2024-08-27 04:20:27','',0,'http://ank.ssk.in.th/?p=427',0,'post','',0),
(428,1,'2024-08-27 04:14:20','2024-08-27 04:14:20','','457196917_1158060895711185_8365916979118315743_n','','inherit','','closed','','457196917_1158060895711185_8365916979118315743_n','','','2024-08-27 04:14:20','2024-08-27 04:14:20','',427,'http://ank.ssk.in.th/wp-content/uploads/2024/08/457196917_1158060895711185_8365916979118315743_n.jpg',0,'attachment','image/jpeg',0),
(429,1,'2024-08-27 04:14:57','2024-08-27 04:14:57','','457196917_1158060895711185_8365916979118315743_n','','inherit','','closed','','457196917_1158060895711185_8365916979118315743_n-2','','','2024-08-27 04:14:57','2024-08-27 04:14:57','',0,'http://ank.ssk.in.th/wp-content/uploads/2024/08/457196917_1158060895711185_8365916979118315743_n-edited.jpg',0,'attachment','image/jpeg',0),
(430,1,'2024-08-27 04:15:08','2024-08-27 04:15:08','<!-- wp:paragraph -->\n<p>ขอขอบคุณ ดต.ฟ้าผ่อนผัน ขันแก้ว (ครูแดร์) จาก สถานีตำรวจภูธรโนนคูณ มาให้ความรู้ เรื่องบุหรี่ไฟฟ้า ยาเสพติด และกฎจราจร 27/09/67</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>คลิกดูที่นี่ <a href=\"https://www.facebook.com/share/wt6yYnV53rSqvwqm\">https://www.facebook.com/share/wt6yYnV53rSqvwqm</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":429,\"width\":\"233px\",\"height\":\"auto\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"align\":\"center\"} -->\n<figure class=\"wp-block-image aligncenter size-large is-resized\"><img src=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/457196917_1158060895711185_8365916979118315743_n-edited.jpg\" alt=\"\" class=\"wp-image-429\" style=\"width:233px;height:auto\"/></figure>\n<!-- /wp:image -->','ครูแดร์ หรือ D.A.R.E. (Drug Abuse Resistance Education)','','inherit','closed','closed','','427-revision-v1','','','2024-08-27 04:15:08','2024-08-27 04:15:08','',427,'http://ank.ssk.in.th/?p=430',0,'revision','',0),
(431,1,'2024-08-27 04:15:40','2024-08-27 04:15:40','<!-- wp:paragraph -->\n<p>ขอขอบคุณ ดต.ฟ้าผ่อนผัน ขันแก้ว (ครูแดร์) จาก สถานีตำรวจภูธรโนนคูณ มาให้ความรู้ เรื่องบุหรี่ไฟฟ้า ยาเสพติด และกฎจราจร 27/09/67 คลิกดูที่นี่ <a href=\"https://www.facebook.com/share/wt6yYnV53rSqvwqm\">https://www.facebook.com/share/wt6yYnV53rSqvwqm</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":429,\"width\":\"233px\",\"height\":\"auto\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"align\":\"center\"} -->\n<figure class=\"wp-block-image aligncenter size-large is-resized\"><img src=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/457196917_1158060895711185_8365916979118315743_n-edited.jpg\" alt=\"\" class=\"wp-image-429\" style=\"width:233px;height:auto\"/></figure>\n<!-- /wp:image -->','ครูแดร์ หรือ D.A.R.E. (Drug Abuse Resistance Education)','','inherit','closed','closed','','427-revision-v1','','','2024-08-27 04:15:40','2024-08-27 04:15:40','',427,'http://ank.ssk.in.th/?p=431',0,'revision','',0),
(432,1,'2024-08-27 04:16:54','2024-08-27 04:16:54','<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|blue\"}}}},\"textColor\":\"blue\"} -->\n<p class=\"has-blue-color has-text-color has-link-color\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"placeholder\":\"เนื้อหา...\"} -->\n<p class=\"has-text-align-left\">โครงการพัฒนากระบวนการเรียนการสอนที่เน้นผู้เรียนเป็นสำคัญ ระหว่างวันที่ 17-18 สิงหาคม 2567 คลิกดูที่นี่ <a href=\"https://www.facebook.com/share/3qXT8Dq8EYNrkSGX\">https://www.facebook.com/share/3qXT8Dq8EYNrkSGX</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:generateblocks/container {\"uniqueId\":\"40ea4921\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:image {\"id\":421,\"width\":\"338px\",\"height\":\"auto\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"center\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/457150231_1158053099045298_5805883337294085059_n.jpg\" alt=\"\" class=\"wp-image-421\" style=\"width:338px;height:auto\"/></figure>\n<!-- /wp:image -->\n<!-- /wp:generateblocks/container -->','โครงการพัฒนากระบวนการเรียนการสอนที่เน้นผู้เรียนเป็นสำคัญ ระหว่างวันที่ 17-18 สิงหาคม 2567','','inherit','closed','closed','','412-revision-v1','','','2024-08-27 04:16:54','2024-08-27 04:16:54','',412,'http://ank.ssk.in.th/?p=432',0,'revision','',0),
(433,1,'2024-08-27 04:17:35','2024-08-27 04:17:35','<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|blue\"}}}},\"textColor\":\"blue\"} -->\n<p class=\"has-blue-color has-text-color has-link-color\">โครงการพัฒนากระบวนการเรียนการสอนที่เน้นผู้เรียนเป็นสำคัญ ระหว่างวันที่ 17-18 สิงหาคม 2567 คลิกดูที่นี่ <a href=\"https://www.facebook.com/share/3qXT8Dq8EYNrkSGX\">https://www.facebook.com/share/3qXT8Dq8EYNrkSGX</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:generateblocks/container {\"uniqueId\":\"40ea4921\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:image {\"id\":421,\"width\":\"338px\",\"height\":\"auto\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"center\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/457150231_1158053099045298_5805883337294085059_n.jpg\" alt=\"\" class=\"wp-image-421\" style=\"width:338px;height:auto\"/></figure>\n<!-- /wp:image -->\n<!-- /wp:generateblocks/container -->','โครงการพัฒนากระบวนการเรียนการสอนที่เน้นผู้เรียนเป็นสำคัญ ระหว่างวันที่ 17-18 สิงหาคม 2567','','inherit','closed','closed','','412-revision-v1','','','2024-08-27 04:17:35','2024-08-27 04:17:35','',412,'http://ank.ssk.in.th/?p=433',0,'revision','',0),
(434,1,'2024-08-27 04:20:27','2024-08-27 04:20:27','<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">ขอขอบคุณ ดต.ฟ้าผ่อนผัน ขันแก้ว (ครูแดร์) จาก สถานีตำรวจภูธรโนนคูณ มาให้ความรู้ เรื่องบุหรี่ไฟฟ้า ยาเสพติด และกฎจราจร 27/09/67 คลิกดูที่นี่ <a href=\"https://www.facebook.com/share/wt6yYnV53rSqvwqm\">https://www.facebook.com/share/wt6yYnV53rSqvwqm</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":429,\"width\":\"233px\",\"height\":\"auto\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"align\":\"center\"} -->\n<figure class=\"wp-block-image aligncenter size-large is-resized\"><img src=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/457196917_1158060895711185_8365916979118315743_n-edited.jpg\" alt=\"\" class=\"wp-image-429\" style=\"width:233px;height:auto\"/></figure>\n<!-- /wp:image -->','ครูแดร์ หรือ D.A.R.E. (Drug Abuse Resistance Education)','','inherit','closed','closed','','427-revision-v1','','','2024-08-27 04:20:27','2024-08-27 04:20:27','',427,'http://ank.ssk.in.th/?p=434',0,'revision','',0),
(435,1,'2024-08-27 04:21:10','2024-08-27 04:21:10','<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|black\"}}}},\"textColor\":\"black\",\"fontSize\":\"small\"} -->\n<p class=\"has-black-color has-text-color has-link-color has-small-font-size\">โครงการพัฒนากระบวนการเรียนการสอนที่เน้นผู้เรียนเป็นสำคัญ ระหว่างวันที่ 17-18 สิงหาคม 2567 คลิกดูที่นี่ <a href=\"https://www.facebook.com/share/3qXT8Dq8EYNrkSGX\">https://www.facebook.com/share/3qXT8Dq8EYNrkSGX</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:generateblocks/container {\"uniqueId\":\"40ea4921\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:image {\"id\":421,\"width\":\"338px\",\"height\":\"auto\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"center\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/457150231_1158053099045298_5805883337294085059_n.jpg\" alt=\"\" class=\"wp-image-421\" style=\"width:338px;height:auto\"/></figure>\n<!-- /wp:image -->\n<!-- /wp:generateblocks/container -->','โครงการพัฒนากระบวนการเรียนการสอนที่เน้นผู้เรียนเป็นสำคัญ ระหว่างวันที่ 17-18 สิงหาคม 2567','','inherit','closed','closed','','412-revision-v1','','','2024-08-27 04:21:10','2024-08-27 04:21:10','',412,'http://ank.ssk.in.th/?p=435',0,'revision','',0),
(436,1,'2024-08-27 04:21:19','2024-08-27 04:21:19','<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|blue\"}}}},\"textColor\":\"blue\",\"fontSize\":\"small\"} -->\n<p class=\"has-blue-color has-text-color has-link-color has-small-font-size\">โครงการพัฒนากระบวนการเรียนการสอนที่เน้นผู้เรียนเป็นสำคัญ ระหว่างวันที่ 17-18 สิงหาคม 2567 คลิกดูที่นี่ <a href=\"https://www.facebook.com/share/3qXT8Dq8EYNrkSGX\">https://www.facebook.com/share/3qXT8Dq8EYNrkSGX</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:generateblocks/container {\"uniqueId\":\"40ea4921\",\"isDynamic\":true,\"blockVersion\":4} -->\n<!-- wp:image {\"id\":421,\"width\":\"338px\",\"height\":\"auto\",\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"align\":\"center\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://ank.ssk.in.th/wp-content/uploads/2024/08/457150231_1158053099045298_5805883337294085059_n.jpg\" alt=\"\" class=\"wp-image-421\" style=\"width:338px;height:auto\"/></figure>\n<!-- /wp:image -->\n<!-- /wp:generateblocks/container -->','โครงการพัฒนากระบวนการเรียนการสอนที่เน้นผู้เรียนเป็นสำคัญ ระหว่างวันที่ 17-18 สิงหาคม 2567','','inherit','closed','closed','','412-revision-v1','','','2024-08-27 04:21:19','2024-08-27 04:21:19','',412,'http://ank.ssk.in.th/?p=436',0,'revision','',0),
(452,1,'2024-08-27 06:52:53','2024-08-27 06:52:53','','ข้อมูล O-net','','publish','closed','closed','','%e0%b8%82%e0%b9%89%e0%b8%ad%e0%b8%a1%e0%b8%b9%e0%b8%a5-o-net','','','2024-08-27 06:52:53','2024-08-27 06:52:53','',0,'http://ank.ssk.in.th/?page_id=452',0,'page','',0),
(454,1,'2024-08-27 06:52:53','2024-08-27 06:52:53','','ข้อมูล O-net','','inherit','closed','closed','','452-revision-v1','','','2024-08-27 06:52:53','2024-08-27 06:52:53','',452,'http://ank.ssk.in.th/?p=454',0,'revision','',0),
(455,1,'2024-08-27 06:52:53','2024-08-27 06:52:53',' ','','','publish','closed','closed','','455','','','2024-08-27 06:52:53','2024-08-27 06:52:53','',0,'http://ank.ssk.in.th/index.php/2024/08/27/455/',11,'nav_menu_item','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_relationships`
--

DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_order` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_relationships`
--

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES
(5,2,0),
(45,12,0),
(158,13,0),
(160,13,0),
(161,13,0),
(188,13,0),
(199,13,0),
(202,13,0),
(208,13,0),
(209,13,0),
(210,13,0),
(211,13,0),
(213,13,0),
(214,13,0),
(215,13,0),
(216,13,0),
(217,13,0),
(218,13,0),
(219,13,0),
(220,13,0),
(221,13,0),
(222,13,0),
(223,13,0),
(224,13,0),
(225,13,0),
(226,13,0),
(227,13,0),
(228,13,0),
(229,13,0),
(230,13,0),
(231,13,0),
(232,13,0),
(233,13,0),
(317,14,0),
(349,3,0),
(354,3,0),
(412,3,0),
(427,1,0),
(455,13,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_taxonomy`
--

DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `taxonomy` varchar(32) NOT NULL DEFAULT '',
  `description` longtext NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_taxonomy`
--

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES
(1,1,'category','',0,1),
(2,2,'wp_theme','',0,1),
(3,3,'category','',0,3),
(4,4,'category','',0,0),
(5,5,'category','',0,0),
(6,6,'category','',0,0),
(7,7,'category','',0,0),
(8,8,'category','',0,0),
(9,9,'category','',0,0),
(12,12,'wp_theme','',0,1),
(13,13,'nav_menu','',0,32),
(14,14,'wp_pattern_category','',0,1);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_termmeta`
--

DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_termmeta`
--

LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_terms`
--

DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_terms`
--

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES
(1,'Uncategorized','uncategorized',0),
(2,'twentytwentytwo','twentytwentytwo',0),
(3,'ข่าวประชาสัมพันธ์','%e0%b8%82%e0%b9%88%e0%b8%b2%e0%b8%a7%e0%b8%9b%e0%b8%a3%e0%b8%b0%e0%b8%8a%e0%b8%b2%e0%b8%aa%e0%b8%b1%e0%b8%a1%e0%b8%9e%e0%b8%b1%e0%b8%99%e0%b8%98%e0%b9%8c',0),
(4,'ข่าวสารกิจกรรมโรงเรียน','%e0%b8%82%e0%b9%88%e0%b8%b2%e0%b8%a7%e0%b8%aa%e0%b8%b2%e0%b8%a3%e0%b8%81%e0%b8%b4%e0%b8%88%e0%b8%81%e0%b8%a3%e0%b8%a3%e0%b8%a1%e0%b9%82%e0%b8%a3%e0%b8%87%e0%b9%80%e0%b8%a3%e0%b8%b5%e0%b8%a2%e0%b8%99',0),
(5,'ผลงานนักเรียน','%e0%b8%9c%e0%b8%a5%e0%b8%87%e0%b8%b2%e0%b8%99%e0%b8%99%e0%b8%b1%e0%b8%81%e0%b9%80%e0%b8%a3%e0%b8%b5%e0%b8%a2%e0%b8%99',0),
(6,'ผลงานครู','%e0%b8%9c%e0%b8%a5%e0%b8%87%e0%b8%b2%e0%b8%99%e0%b8%84%e0%b8%a3%e0%b8%b9',0),
(7,'เผยแพร่ผลงานทางวิชาการ','%e0%b9%80%e0%b8%9c%e0%b8%a2%e0%b9%81%e0%b8%9e%e0%b8%a3%e0%b9%88%e0%b8%9c%e0%b8%a5%e0%b8%87%e0%b8%b2%e0%b8%99%e0%b8%97%e0%b8%b2%e0%b8%87%e0%b8%a7%e0%b8%b4%e0%b8%8a%e0%b8%b2%e0%b8%81%e0%b8%b2%e0%b8%a3',0),
(8,'โครงการ/งาน','%e0%b9%82%e0%b8%84%e0%b8%a3%e0%b8%87%e0%b8%81%e0%b8%b2%e0%b8%a3-%e0%b8%87%e0%b8%b2%e0%b8%99',0),
(9,'คำสั่ง','%e0%b8%84%e0%b8%b3%e0%b8%aa%e0%b8%b1%e0%b9%88%e0%b8%87',0),
(12,'colormag','colormag',0),
(13,'Primary','primary',0),
(14,'Twenty Ten','twentyten',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_usermeta`
--

DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_usermeta`
--

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES
(1,1,'nickname','admin'),
(2,1,'first_name',''),
(3,1,'last_name',''),
(4,1,'description',''),
(5,1,'rich_editing','true'),
(6,1,'syntax_highlighting','true'),
(7,1,'comment_shortcuts','false'),
(8,1,'admin_color','light'),
(9,1,'use_ssl','0'),
(10,1,'show_admin_bar_front','true'),
(11,1,'locale',''),
(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),
(13,1,'wp_user_level','10'),
(14,1,'dismissed_wp_pointers','theme_editor_notice,plugin_editor_notice'),
(15,1,'show_welcome_panel','0'),
(17,1,'wp_dashboard_quick_press_last_post_id','457'),
(18,1,'community-events-location','a:1:{s:2:\"ip\";s:13:\"158.140.182.0\";}'),
(20,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),
(21,1,'metaboxhidden_nav-menus','a:2:{i:0;s:12:\"add-post_tag\";i:1;s:15:\"add-post_format\";}'),
(22,1,'nav_menu_recently_edited','13'),
(23,1,'wp_user-settings','mfold=o&libraryContent=browse'),
(24,1,'wp_user-settings-time','1724309597'),
(25,1,'closedpostboxes_page','a:0:{}'),
(26,1,'metaboxhidden_page','a:0:{}'),
(27,1,'wp_media_library_mode','grid'),
(31,1,'wp_persisted_preferences','a:5:{s:22:\"core/customize-widgets\";a:2:{s:12:\"welcomeGuide\";b:0;s:12:\"fixedToolbar\";b:0;}s:9:\"_modified\";s:24:\"2024-08-27T04:00:35.573Z\";s:4:\"core\";a:2:{s:26:\"isComplementaryAreaVisible\";b:1;s:10:\"openPanels\";a:2:{i:0;s:11:\"post-status\";i:1;s:23:\"taxonomy-panel-category\";}}s:14:\"core/edit-post\";a:1:{s:12:\"welcomeGuide\";b:0;}s:17:\"core/edit-widgets\";a:2:{s:26:\"isComplementaryAreaVisible\";b:0;s:12:\"welcomeGuide\";b:0;}}'),
(32,1,'closedpostboxes_dashboard','a:0:{}'),
(33,1,'metaboxhidden_dashboard','a:0:{}'),
(34,1,'closedpostboxes_post','a:0:{}'),
(35,1,'metaboxhidden_post','a:1:{i:0;s:14:\"post-video-url\";}'),
(36,1,'meta-box-order_post','a:3:{s:6:\"normal\";s:21:\"colormag-page-setting\";s:8:\"advanced\";s:0:\"\";s:4:\"side\";s:14:\"post-video-url\";}'),
(37,1,'generateblocks_onboarding','a:1:{s:22:\"insert_inner_container\";b:1;}'),
(40,1,'session_tokens','a:1:{s:64:\"9b4b29c96d9abb2bcb7f4cb725be05c177bc70b4e3c06d6e9524cb756da8ef64\";a:4:{s:10:\"expiration\";i:1762474339;s:2:\"ip\";s:13:\"36.69.167.181\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36\";s:5:\"login\";i:1762301539;}}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_users`
--

DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) NOT NULL DEFAULT '',
  `user_pass` varchar(255) NOT NULL DEFAULT '',
  `user_nicename` varchar(50) NOT NULL DEFAULT '',
  `user_email` varchar(100) NOT NULL DEFAULT '',
  `user_url` varchar(100) NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_users`
--

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES
(1,'admin','$wp$2y$10$geCADnLT0VsAkxcwtWLYJ.S46uWMfT1dGi9GOA6JjSBbcLF9svqfa','admin','ttwanna@gmail.com','http://web085.ssk.in.th','2022-07-22 06:22:28','',0,'admin');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wpfm_backup`
--

DROP TABLE IF EXISTS `wp_wpfm_backup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wpfm_backup` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `backup_name` text DEFAULT NULL,
  `backup_date` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpfm_backup`
--

LOCK TABLES `wp_wpfm_backup` WRITE;
/*!40000 ALTER TABLE `wp_wpfm_backup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wpfm_backup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Dumping events for database 'w155'
--

--
-- Dumping routines for database 'w155'
--
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2026-04-03 20:00:45