HEX
Server: Apache/2
System: Linux da1 5.14.0-611.9.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Nov 27 10:37:27 EST 2025 x86_64
User: mdosdorg (1028)
PHP: 8.3.14
Disabled: exec,system,passthru,shell_exec,escapeshellarg,escapeshellcmd,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname,mail
Upload Files
File: /home/mdosdorg/public_html/wp-content/themes/blocksy/template-parts/content-none.php
<?php
/**
 * Template part for displaying a message that posts cannot be found
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package Blocksy
 */

echo '<div class="entry-content is-layout-flow">';

if (is_home() && current_user_can('publish_posts')) {
	printf(
		'<p>' . wp_kses(
			/* translators: 1: link to WP admin new post page open 2: link closing. */
			__('Ready to publish your first post? %1$sGet started here%2$s.', 'blocksy'),
			[
				'a' => [
					'href' => []
				]
			]
		) . '</p>',
		'<a href="' . esc_url(admin_url('post-new.php')) . '">',
		'</a>'
	);
} else {
	get_search_form();
}

echo '</div>';