diff --git a/dummylab.php b/dummylab.php index af64214..e135bba 100644 --- a/dummylab.php +++ b/dummylab.php @@ -1,17 +1,18 @@ ['ID', 'display_name']]); + $query = new WP_Query([ - 'post_type' => 'post', + 'post_type' => ['post', 'page'], 'posts_per_page' => -1, 'meta_key' => $this->meta_key, 'meta_value' => '1', 'fields' => 'ids', + 'post_status' => 'any', ]); $dummy_count = $query->found_posts; ?>
-

๐Ÿงช DummyLab โ€“ Post Generator

-

Generate dummy posts safely for design testing and layout development.

+

๐Ÿงช DummyLab โ€“ Post & Page Generator

+

Dibuat oleh masbudikusuma | Dokumentasi Plugin


@@ -66,49 +69,134 @@ class DummyLab {

-
- -
-

Generate Dummy Posts

+
+
+

Generate Content Dummy

- -

-
- -

-

-
- -

- - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ +
+ +

Kategori dibuat otomatis jika belum ada. Pisahkan dengan koma. Tidak berlaku untuk Halaman.

+
+ +

Opsional, pisahkan dengan koma.

+
+ +
+ +

Jika tanggal di masa depan, status otomatis "Scheduled".

+
+ +
Gambar Unggulan +

+ +
Opsi Tambahan +
+ +
+ +
- -
-

Cleanup / Purge Data

-

Currently active dummy posts:

+
+

Cleanup / Rollback

+

Total data dummy aktif:

- -

This action will permanently delete all posts created by DummyLab.

- ($dummy_count === 0)]); ?> +

Tindakan ini akan menghapus permanen seluruh post, page, dan gambar yang dibuat oleh DummyLab.

+ ($dummy_count === 0)]); ?>
@@ -118,41 +206,127 @@ class DummyLab { public function handle_generate() { if (!current_user_can('manage_options') || !check_admin_referer('dummylab_generate_action', 'dummylab_nonce')) { - wp_die('Unauthorized request.'); + wp_die('Akses ditolak.'); } - $count = isset($_POST['post_count']) ? min(50, max(1, intval($_POST['post_count']))) : 5; - $status = isset($_POST['post_status']) && in_array($_POST['post_status'], ['publish', 'draft']) ? $_POST['post_status'] : 'publish'; + require_once(ABSPATH . 'wp-admin/includes/image.php'); + require_once(ABSPATH . 'wp-admin/includes/file.php'); + require_once(ABSPATH . 'wp-admin/includes/media.php'); - $titles = [ - 'Exploring the Future of Web Architecture', - '10 Essential Tips for Responsive Design', - 'Understanding High-Performance Server Configurations', - 'A Deep Dive into Modern CMS Solutions', - 'Optimizing Database Queries for Scalability', - 'Building Secure Application Infrastructure' - ]; + $count = isset($_POST['post_count']) ? min(50, max(1, intval($_POST['post_count']))) : 5; + $post_type = isset($_POST['post_type']) && in_array($_POST['post_type'], ['post', 'page']) ? $_POST['post_type'] : 'post'; + $lang = isset($_POST['content_lang']) ? sanitize_text_field($_POST['content_lang']) : 'id'; + $status = isset($_POST['post_status']) ? sanitize_text_field($_POST['post_status']) : 'publish'; + $categories_raw = isset($_POST['categories']) ? sanitize_text_field($_POST['categories']) : ''; + $tags_raw = isset($_POST['tags']) ? sanitize_text_field($_POST['tags']) : ''; + $author_opt = isset($_POST['post_author']) ? sanitize_text_field($_POST['post_author']) : 'random'; + $date_opt = isset($_POST['date_option']) ? sanitize_text_field($_POST['date_option']) : 'now'; + $content_length = isset($_POST['content_length']) ? sanitize_text_field($_POST['content_length']) : 'medium'; + $use_image = isset($_POST['use_featured_image']) ? true : false; + $image_size = isset($_POST['image_size']) ? sanitize_text_field($_POST['image_size']) : '1200/800'; + $add_comments = isset($_POST['add_comments']) ? true : false; + $make_sticky = isset($_POST['make_sticky']) ? true : false; - $paragraphs = [ - 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.', - 'Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.', - 'Curabitur pretium tincidunt lacus. Nulla gravida orci a odio. Nullam varius, turpis et commodo pharetra, est eros bibendum elit, nec luctus magna felis sollicitudin mauris.' - ]; + // Process categories + $cat_ids = []; + if ($post_type === 'post' && !empty($categories_raw)) { + $cat_names = array_map('trim', explode(',', $categories_raw)); + foreach ($cat_names as $cat_name) { + if (empty($cat_name)) continue; + $term = term_exists($cat_name, 'category'); + if (!$term) { + $term = wp_insert_term($cat_name, 'category'); + } + if (!is_wp_error($term)) { + $cat_ids[] = (int) $term['term_id']; + } + } + } + + // Process tags + $tag_names = !empty($tags_raw) ? array_map('trim', explode(',', $tags_raw)) : []; + + // Users pool + $user_ids = get_users(['fields' => 'ID']); for ($i = 0; $i < $count; $i++) { - $random_title = $titles[array_rand($titles)] . ' #' . rand(100, 999); - $random_content = '

' . $paragraphs[array_rand($paragraphs)] . '

' . $paragraphs[array_rand($paragraphs)] . '

'; + // Determine Author + $author_id = ($author_opt === 'random') ? $user_ids[array_rand($user_ids)] : intval($author_opt); - $post_id = wp_insert_post([ - 'post_title' => $random_title, - 'post_content' => $random_content, - 'post_status' => $status, - 'post_type' => 'post', - 'post_author' => get_current_user_id(), - ]); + // Determine Date + $post_date = current_time('mysql'); + $final_status = $status; + if ($date_opt === 'random_past') { + $days_back = rand(1, 30); + $post_date = date('Y-m-d H:i:s', strtotime("-$days_back days")); + } elseif ($date_opt === 'future') { + $days_ahead = rand(1, 15); + $post_date = date('Y-m-d H:i:s', strtotime("+$days_ahead days")); + $final_status = 'future'; + } + + // Build Content & Title + $title = $this->get_sample_title($lang, $i); + $content = $this->get_sample_content($lang, $content_length); + + $post_data = [ + 'post_title' => $title, + 'post_content' => $content, + 'post_status' => $final_status, + 'post_type' => $post_type, + 'post_author' => $author_id, + 'post_date' => $post_date, + ]; + + if ($post_type === 'post' && !empty($cat_ids)) { + $post_data['post_category'] = [$cat_ids[array_rand($cat_ids)]]; + } + + if ($post_type === 'post' && !empty($tag_names)) { + $post_data['tags_input'] = $tag_names; + } + + $post_id = wp_insert_post($post_data); if ($post_id && !is_wp_error($post_id)) { update_post_meta($post_id, $this->meta_key, '1'); + + // Featured Image via Picsum + if ($use_image) { + $image_url = 'https://picsum.photos/' . $image_size . '?random=' . rand(1, 9999); + $tmp = download_url($image_url); + if (!is_wp_error($tmp)) { + $file_array = [ + 'name' => 'dummylab-' . $post_id . '.jpg', + 'tmp_name' => $tmp + ]; + $attach_id = media_handle_sideload($file_array, $post_id); + if (!is_wp_error($attach_id)) { + set_post_thumbnail($post_id, $attach_id); + update_post_meta($attach_id, $this->meta_key, '1'); + } + @unlink($tmp); + } + } + + // Sticky option + if ($i === 0 && $make_sticky && $post_type === 'post') { + stick_post($post_id); + } + + // Add comments + if ($add_comments) { + $comment_count = rand(1, 3); + for ($c = 0; $c < $comment_count; $c++) { + wp_insert_comment([ + 'comment_post_ID' => $post_id, + 'comment_author' => 'Tester Dummy', + 'comment_author_email' => 'tester@example.com', + 'comment_content' => ($lang === 'id') ? 'Artikel yang sangat bermanfaat dan informatif!' : 'Great content, thanks for sharing!', + 'comment_approved' => 1, + ]); + } + } } } @@ -162,15 +336,16 @@ class DummyLab { public function handle_purge() { if (!current_user_can('manage_options') || !check_admin_referer('dummylab_purge_action', 'dummylab_nonce')) { - wp_die('Unauthorized request.'); + wp_die('Akses ditolak.'); } $query = new WP_Query([ - 'post_type' => 'post', + 'post_type' => ['post', 'page', 'attachment'], 'posts_per_page' => -1, 'meta_key' => $this->meta_key, 'meta_value' => '1', 'fields' => 'ids', + 'post_status' => 'any', ]); $purged_count = 0; @@ -185,6 +360,55 @@ class DummyLab { wp_redirect(admin_url('tools.php?page=dummylab&status=purged&count=' . $purged_count)); exit; } + + private function get_sample_title($lang, $index) { + $titles_id = [ + 'Panduan Lengkap Pengembangan Infrastruktur Web Modern', + 'Mengoptimalkan Performa Database untuk Trafik Tinggi', + 'Desain Responsif dan Pengalaman Pengguna Terbaik', + 'Strategi Keamanan Server dan Arsitektur Komputasi Awan', + 'Manajemen Konten Efektif untuk Pertumbuhan Bisnis' + ]; + $titles_en = [ + 'Exploring the Future of Scalable Web Architecture', + '10 Essential Practices for High-Performance Servers', + 'Understanding Modern UI/UX Design Principles', + 'Building Secure Application Infrastructures', + 'Optimizing Database Queries for Enterprise Solutions' + ]; + $arr = ($lang === 'id') ? $titles_id : $titles_en; + return $arr[array_rand($arr)] . ' #' . rand(100, 999); + } + + private function get_sample_content($lang, $length) { + $p_id = [ + 'Pengembangan aplikasi web modern memerlukan perhatian ekstra pada arsitektur sistem dasar. Komponen seperti manajemen memori, optimasi kueri, dan konfigurasi server menjadi kunci utama.', + 'Dengan menerapkan standar keamanan terbaik, kita dapat mencegah potensi bahaya siber dan memastikan layanan tetap stabil di bawah beban lalu lintas data yang tinggi.', + 'Pengalaman pengguna merupakan elemen krusial. Tata letak visual yang konsisten serta navigasi intuitif memudahkan pengunjung dalam menemukan informasi secara cepat.' + ]; + + $p_en = [ + 'Modern web applications require strict adherence to solid system architectures. Key aspects include efficient database queries, memory management, and caching layer implementation.', + 'Ensuring continuous infrastructure security prevents vulnerabilities while guaranteeing optimal uptime during high-volume traffic spikes.', + 'User experience design directly impacts engagement rates. Clean layouts, readable typography, and intuitive interfaces make content consumption seamless.' + ]; + + $paragraphs = ($lang === 'id') ? $p_id : $p_en; + $output = ''; + + $loops = ($length === 'short') ? 2 : (($length === 'long') ? 7 : 4); + for ($k = 0; $k < $loops; $k++) { + $output .= '

' . $paragraphs[array_rand($paragraphs)] . '

'; + if ($length !== 'short' && $k === 1) { + $output .= '

' . (($lang === 'id') ? 'Sub-judul Informasi Penting' : 'Key Technical Insights') . '

'; + } + if ($length === 'long' && $k === 3) { + $output .= '

' . (($lang === 'id') ? 'Keamanan dan kecepatan adalah fondasi utama pengembangan web.' : 'Security and performance are the core foundations of web development.') . '

'; + } + } + + return $output; + } } DummyLab::get_instance();