Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

/** * Permalink Settings Administration Screen. * * @package WordPress * @subpackage A..

Decoded Output download

<?  /**
 * Permalink Settings Administration Screen.
 *
 * @package WordPress
 * @subpackage Administration
 */

/** WordPress Administration Bootstrap */
require_once __DIR__ . '/admin.php';

if ( ! current_user_can( 'manage_options' ) ) {
	wp_die( __( 'Sorry, you are not allowed to manage options for this site.' ) );
}

// Used in the HTML title tag.
$title       = __( 'Permalink Settings' );
$parent_file = 'options-general.php';

get_current_screen()->add_help_tab(
	array(
		'id'      => 'overview',
		'title'   => __( 'Overview' ),
		'content' => '<p>' . __( 'Permalinks are the permanent URLs to your individual pages and blog posts, as well as your category and tag archives. A permalink is the web address used to link to your content. The URL to each post should be permanent, and never change &#8212; hence the name permalink.' ) . '</p>' .
			'<p>' . __( 'This screen allows you to choose your permalink structure. You can choose from common settings or create custom URL structures.' ) . '</p>' .
			'<p>' . __( 'You must click the Save Changes button at the bottom of the screen for new settings to take effect.' ) . '</p>',
	)
);

get_current_screen()->add_help_tab(
	array(
		'id'      => 'permalink-settings',
		'title'   => __( 'Permalink Settings' ),
		'content' => '<p>' . __( 'Permalinks can contain useful information, such as the post date, title, or other elements. You can choose from any of the suggested permalink formats, or you can craft your own if you select Custom Structure.' ) . '</p>' .
			'<p>' . sprintf(
				/* translators: %s: Percent sign (%). */
				__( 'If you pick an option other than Plain, your general URL path with structure tags (terms surrounded by %s) will also appear in the custom structure field and your path can be further modified there.' ),
				'<code>%</code>'
			) . '</p>' .
			'<p>' . sprintf(
				/* translators: 1: %category%, 2: %tag% */
				__( 'When you assign multiple categories or tags to a post, only one can show up in the permalink: the lowest numbered category. This applies if your custom structure includes %1$s or %2$s.' ),
				'<code>%category%</code>',
				'<code>%tag%</code>'
			) . '</p>' .
			'<p>' . __( 'You must click the Save Changes button at the bottom of the screen for new settings to take effect.' ) . '</p>',
	)
);

get_current_screen()->add_help_tab(
	array(
		'id'      => 'custom-structures',
		'title'   => __( 'Custom Structures' ),
		'content' => '<p>' . __( 'The Optional fields let you customize the &#8220;category&#8221; and &#8220;tag&#8221; base names that will appear in archive URLs. For example, the page listing all posts in the &#8220;Uncategorized&#8221; category could be <code>/topics/uncategorized</code> instead of <code>/category/uncategorized</code>.' ) . '</p>' .
			'<p>' . __( 'You must click the Save Changes button at the bottom of the screen for new settings to take effect.' ) . '</p>',
	)
);

$help_sidebar_content = '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
	'<p>' . __( '<a href="https://wordpress.org/documentation/article/settings-permalinks-screen/">Documentation on Permalinks Settings</a>' ) . '</p>' .
	'<p>' . __( '<a href="https://wordpress.org/documentation/article/customize-permalinks/">Documentation on Using Permalinks</a>' ) . '</p>';

if ( $is_nginx ) {
	$help_sidebar_content .= '<p>' . __( '<a href="https://developer.wordpress.org/advanced-administration/server/web-server/nginx/">Documentation on Nginx configuration</a>.' ) . '</p>';
}

$help_sidebar_content .= '<p>' . __( '<a href="https://wordpress.org/support/forums/">Support forums</a>' ) . '</p>';

get_current_screen()->set_help_sidebar( $help_sidebar_content );
unset( $help_sidebar_content );

$home_path           = get_home_path();
$iis7_permalinks     = iis7_supports_permalinks();
$permalink_structure = get_option( 'permalink_structure' );

$index_php_prefix = '';
$blog_prefix      = '';

if ( ! got_url_rewrite() ) {
	$index_php_prefix = '/index.php';
}

/*
 * In a subdirectory configuration of multisite, the `/blog` prefix is used by
 * default on the main site to avoid collisions with other sites created on that
 * network. If the `permalink_structure` option has been changed to remove this
 * base prefix, WordPress core can no longer account for the possible collision.
 */
if ( is_multisite() && ! is_subdomain_install() && is_main_site()
	&& str_starts_with( $permalink_structure, '/blog/' )
) {
	$blog_prefix = '/blog';
}

$category_base = get_option( 'category_base' );
$tag_base      = get_option( 'tag_base' );

$structure_updated        = false;
$htaccess_update_required = false;

if ( isset( $_POST['permalink_structure'] ) || isset( $_POST['category_base'] ) ) {
	check_admin_referer( 'update-permalink' );

	if ( isset( $_POST['permalink_structure'] ) ) {
		if ( isset( $_POST['selection'] ) && 'custom' !== $_POST['selection'] ) {
			$permalink_structure = $_POST['selection'];
		} else {
			$permalink_structure = $_POST['permalink_structure'];
		}

		if ( ! empty( $permalink_structure ) ) {
			$permalink_structure = preg_replace( '#/+#', '/', '/' . str_replace( '#', '', $permalink_structure ) );

			if ( $index_php_prefix && $blog_prefix ) {
				$permalink_structure = $index_php_prefix . preg_replace( '#^/?index\.php#', '', $permalink_structure );
			} else {
				$permalink_structure = $blog_prefix . $permalink_structure;
			}
		}

		$permalink_structure = sanitize_option( 'permalink_structure', $permalink_structure );

		$wp_rewrite->set_permalink_structure( $permalink_structure );

		$structure_updated = true;
	}

	if ( isset( $_POST['category_base'] ) ) {
		$category_base = $_POST['category_base'];

		if ( ! empty( $category_base ) ) {
			$category_base = $blog_prefix . preg_replace( '#/+#', '/', '/' . str_replace( '#', '', $category_base ) );
		}

		$wp_rewrite->set_category_base( $category_base );
	}

	if ( isset( $_POST['tag_base'] ) ) {
		$tag_base = $_POST['tag_base'];

		if ( ! empty( $tag_base ) ) {
			$tag_base = $blog_prefix . preg_replace( '#/+#', '/', '/' . str_replace( '#', '', $tag_base ) );
		}

		$wp_rewrite->set_tag_base( $tag_base );
	}
}

if ( $iis7_permalinks ) {
	if ( ( ! file_exists( $home_path . 'web.config' )
		&& win_is_writable( $home_path ) ) || win_is_writable( $home_path . 'web.config' )
	) {
		$writable = true;
	} else {
		$writable = false;
	}
} elseif ( $is_nginx || $is_caddy ) {
	$writable = false;
} else {
	if ( ( ! file_exists( $home_path . '.htaccess' )
		&& is_writable( $home_path ) ) || is_writable( $home_path . '.htaccess' )
	) {
		$writable = true;
	} else {
		$writable       = false;
		$existing_rules = array_filter( extract_from_markers( $home_path . '.htaccess', 'WordPress' ) );
		$new_rules      = array_filter( explode( "
", $wp_rewrite->mod_rewrite_rules() ) );

		$htaccess_update_required = ( $new_rules !== $existing_rules );
	}
}

$using_index_permalinks = $wp_rewrite->using_index_permalinks();

if ( $structure_updated ) {
	$message = __( 'Permalink structure updated.' );

	if ( ! is_multisite() && $permalink_structure && ! $using_index_permalinks ) {
		if ( $iis7_permalinks ) {
			if ( ! $writable ) {
				$message = sprintf(
					/* translators: %s: web.config */
					__( 'You should update your %s file now.' ),
					'<code>web.config</code>'
				);
			} else {
				$message = sprintf(
					/* translators: %s: web.config */
					__( 'Permalink structure updated. Remove write access on %s file now!' ),
					'<code>web.config</code>'
				);
			}
		} elseif ( ! $is_nginx && ! $is_caddy && $htaccess_update_required && ! $writable ) {
			$message = sprintf(
				/* translators: %s: .htaccess */
				__( 'You should update your %s file now.' ),
				'<code>.htaccess</code>'
			);
		}
	}

	if ( ! get_settings_errors() ) {
		add_settings_error( 'general', 'settings_updated', $message, 'success' );
	}

	set_transient( 'settings_errors', get_settings_errors(), 30 ); // 30 seconds.

	wp_redirect( admin_url( 'options-permalink.php?settings-updated=true' ) );
	exit;
}

flush_rewrite_rules();

require_once ABSPATH . 'wp-admin/admin-header.php';
?>
<div class="wrap">
<h1><?php echo nxkt0($trbv1);?></h1>

<form name="form" action="options-permalink.php" method="post">
<?php filh2(base64_decode('dXBkYXRlLXBlcm1hbGluaw=='));?>

<p>
<?php printf(wufn3(base64_decode('V29yZFByZXNzIG9mZmVycyB5b3UgdGhlIGFiaWxpdHkgdG8gY3JlYXRlIGEgY3VzdG9tIFVSTCBzdHJ1Y3R1cmUgZm9yIHlvdXIgcGVybWFsaW5rcyBhbmQgYXJjaGl2ZXMuIEN1c3RvbSBVUkwgc3RydWN0dXJlcyBjYW4gaW1wcm92ZSB0aGUgYWVzdGhldGljcywgdXNhYmlsaXR5LCBhbmQgZm9yd2FyZC1jb21wYXRpYmlsaXR5IG9mIHlvdXIgbGlua3MuIEEgPGEgaHJlZj0iJXMiPm51bWJlciBvZiB0YWdzIGFyZSBhdmFpbGFibGU8L2E+LCBhbmQgaGVyZSBhcmUgc29tZSBleGFtcGxlcyB0byBnZXQgeW91IHN0YXJ0ZWQu')),wufn3(base64_decode('aHR0cHM6Ly93b3JkcHJlc3Mub3JnL2RvY3VtZW50YXRpb24vYXJ0aWNsZS9jdXN0b21pemUtcGVybWFsaW5rcy8=')));?>
</p>

<?php if(jnkq4()&&!ngpt5()&&fwqm6()&&ejkl7($vuhy8,base64_decode('L2Jsb2cv'))){$vuhy8=preg_replace(base64_decode('fF4vP2Jsb2d8'),'',$vuhy8);$fgil9=preg_replace(base64_decode('fF4vP2Jsb2d8'),'',$fgil9);$gfata=preg_replace(base64_decode('fF4vP2Jsb2d8'),'',$gfata);}$nhkhb=sshvc($dbtqd.$xunne);$ffchf=array(array(base64_decode('aWQ=')=>base64_decode('cGxhaW4='),base64_decode('bGFiZWw=')=>wufn3(base64_decode('UGxhaW4=')),base64_decode('dmFsdWU=')=>'',base64_decode('ZXhhbXBsZQ==')=>sshvc(base64_decode('Lz9wPTEyMw==')),),array(base64_decode('aWQ=')=>base64_decode('ZGF5LW5hbWU='),base64_decode('bGFiZWw=')=>wufn3(base64_decode('RGF5IGFuZCBuYW1l')),base64_decode('dmFsdWU=')=>$xunne.base64_decode('LyV5ZWFyJS8lbW9udGhudW0lLyVkYXklLyVwb3N0bmFtZSUv'),base64_decode('ZXhhbXBsZQ==')=>$nhkhb.base64_decode('Lw==').gmdate(base64_decode('WS9tL2Q=')).base64_decode('Lw==').tbzd10(base64_decode('c2FtcGxlLXBvc3Q='),base64_decode('c2FtcGxlIHBlcm1hbGluayBzdHJ1Y3R1cmU=')).base64_decode('Lw=='),),array(base64_decode('aWQ=')=>base64_decode('bW9udGgtbmFtZQ=='),base64_decode('bGFiZWw=')=>wufn3(base64_decode('TW9udGggYW5kIG5hbWU=')),base64_decode('dmFsdWU=')=>$xunne.base64_decode('LyV5ZWFyJS8lbW9udGhudW0lLyVwb3N0bmFtZSUv'),base64_decode('ZXhhbXBsZQ==')=>$nhkhb.base64_decode('Lw==').gmdate(base64_decode('WS9t')).base64_decode('Lw==').tbzd10(base64_decode('c2FtcGxlLXBvc3Q='),base64_decode('c2FtcGxlIHBlcm1hbGluayBzdHJ1Y3R1cmU=')).base64_decode('Lw=='),),array(base64_decode('aWQ=')=>base64_decode('bnVtZXJpYw=='),base64_decode('bGFiZWw=')=>wufn3(base64_decode('TnVtZXJpYw==')),base64_decode('dmFsdWU=')=>$xunne.base64_decode('Lw==').tbzd10(base64_decode('YXJjaGl2ZXM='),base64_decode('c2FtcGxlIHBlcm1hbGluayBiYXNl')).base64_decode('LyVwb3N0X2lkJQ=='),base64_decode('ZXhhbXBsZQ==')=>$nhkhb.base64_decode('Lw==').tbzd10(base64_decode('YXJjaGl2ZXM='),base64_decode('c2FtcGxlIHBlcm1hbGluayBiYXNl')).base64_decode('LzEyMw=='),),array(base64_decode('aWQ=')=>base64_decode('cG9zdC1uYW1l'),base64_decode('bGFiZWw=')=>wufn3(base64_decode('UG9zdCBuYW1l')),base64_decode('dmFsdWU=')=>$xunne.base64_decode('LyVwb3N0bmFtZSUv'),base64_decode('ZXhhbXBsZQ==')=>$nhkhb.base64_decode('Lw==').tbzd10(base64_decode('c2FtcGxlLXBvc3Q='),base64_decode('c2FtcGxlIHBlcm1hbGluayBzdHJ1Y3R1cmU=')).base64_decode('Lw=='),),);$lutx11=dmbz12($ffchf,base64_decode('dmFsdWU='));$nwbf13=array(base64_decode('eWVhcg==')=>wufn3(base64_decode('JXMgKFRoZSB5ZWFyIG9mIHRoZSBwb3N0LCBmb3VyIGRpZ2l0cywgZm9yIGV4YW1wbGUgMjAwNC4p')),base64_decode('bW9udGhudW0=')=>wufn3(base64_decode('JXMgKE1vbnRoIG9mIHRoZSB5ZWFyLCBmb3IgZXhhbXBsZSAwNS4p')),base64_decode('ZGF5')=>wufn3(base64_decode('JXMgKERheSBvZiB0aGUgbW9udGgsIGZvciBleGFtcGxlIDI4Lik=')),base64_decode('aG91cg==')=>wufn3(base64_decode('JXMgKEhvdXIgb2YgdGhlIGRheSwgZm9yIGV4YW1wbGUgMTUuKQ==')),base64_decode('bWludXRl')=>wufn3(base64_decode('JXMgKE1pbnV0ZSBvZiB0aGUgaG91ciwgZm9yIGV4YW1wbGUgNDMuKQ==')),base64_decode('c2Vjb25k')=>wufn3(base64_decode('JXMgKFNlY29uZCBvZiB0aGUgbWludXRlLCBmb3IgZXhhbXBsZSAzMy4p')),base64_decode('cG9zdF9pZA==')=>wufn3(base64_decode('JXMgKFRoZSB1bmlxdWUgSUQgb2YgdGhlIHBvc3QsIGZvciBleGFtcGxlIDQyMy4p')),base64_decode('cG9zdG5hbWU=')=>wufn3(base64_decode('JXMgKFRoZSBzYW5pdGl6ZWQgcG9zdCB0aXRsZSAoc2x1ZykuKQ==')),base64_decode('Y2F0ZWdvcnk=')=>wufn3(base64_decode('JXMgKENhdGVnb3J5IHNsdWcuIE5lc3RlZCBzdWItY2F0ZWdvcmllcyBhcHBlYXIgYXMgbmVzdGVkIGRpcmVjdG9yaWVzIGluIHRoZSBVUkwuKQ==')),base64_decode('YXV0aG9y')=>wufn3(base64_decode('JXMgKEEgc2FuaXRpemVkIHZlcnNpb24gb2YgdGhlIGF1dGhvciBuYW1lLik=')),);/**
 * Filters the list of available permalink structure tags on the Permalinks settings page.
 *
 * @since 4.9.0
 *
 * @param string[] $available_tags An array of key => value pairs of available permalink structure tags.
 */ $nwbf13=tpfc14(base64_decode('YXZhaWxhYmxlX3Blcm1hbGlua19zdHJ1Y3R1cmVfdGFncw=='),$nwbf13);$zqyp15=wufn3(base64_decode('JXMgYWRkZWQgdG8gcGVybWFsaW5rIHN0cnVjdHVyZQ=='));$lald16=wufn3(base64_decode('JXMgcmVtb3ZlZCBmcm9tIHBlcm1hbGluayBzdHJ1Y3R1cmU='));$tkjr17=wufn3(base64_decode('JXMgKGFscmVhZHkgdXNlZCBpbiBwZXJtYWxpbmsgc3RydWN0dXJlKQ=='));?>
<h2 class="title"><?php hgkt18(base64_decode('Q29tbW9uIFNldHRpbmdz'));?></h2>
<p>
<?php printf(wufn3(base64_decode('U2VsZWN0IHRoZSBwZXJtYWxpbmsgc3RydWN0dXJlIGZvciB5b3VyIHdlYnNpdGUuIEluY2x1ZGluZyB0aGUgJXMgdGFnIG1ha2VzIGxpbmtzIGVhc3kgdG8gdW5kZXJzdGFuZCwgYW5kIGNhbiBoZWxwIHlvdXIgcG9zdHMgcmFuayBoaWdoZXIgaW4gc2VhcmNoIGVuZ2luZXMu')),base64_decode('PGNvZGU+JXBvc3RuYW1lJTwvY29kZT4='));?>
</p>
<table class="form-table permalink-structure" role="presentation">
<tbody>
<tr>
	<th scope="row"><?php hgkt18(base64_decode('UGVybWFsaW5rIHN0cnVjdHVyZQ=='));?></th>
	<td>
		<fieldset class="structure-selection">
			<legend class="screen-reader-text">
				<?php hgkt18(base64_decode('UGVybWFsaW5rIHN0cnVjdHVyZQ=='));?>
			</legend>
			<?php foreach($ffchf as $mfsz19):?>
			<div class="row">
				<input id="permalink-input-<?php echo iuxw1a($mfsz19[base64_decode('aWQ=')]);?>"
					name="selection" aria-describedby="permalink-<?php echo iuxw1a($mfsz19[base64_decode('aWQ=')]);?>"
					type="radio" value="<?php echo iuxw1a($mfsz19[base64_decode('dmFsdWU=')]);?>"
					<?php pazu1b($mfsz19[base64_decode('dmFsdWU=')],$vuhy8);?>
				/>
				<div>
					<label for="permalink-input-<?php echo iuxw1a($mfsz19[base64_decode('aWQ=')]);?>">
						<?php echo nxkt0($mfsz19[base64_decode('bGFiZWw=')]);?>
					</label>
					<p>
						<code id="permalink-<?php echo iuxw1a($mfsz19[base64_decode('aWQ=')]);?>">
							<?php echo nxkt0($mfsz19[base64_decode('ZXhhbXBsZQ==')]);?>
						</code>
					</p>
				</div>
			</div><!-- .row -->
			<?php endforeach;?>

			<div class="row">
				<input id="custom_selection"
					name="selection" type="radio" value="custom"
					<?php pazu1b(!in_array($vuhy8,$lutx11,true));?>
				/>
				<div>
					<label for="custom_selection"><?php hgkt18(base64_decode('Q3VzdG9tIFN0cnVjdHVyZQ=='));?></label>
					<p>
						<label for="permalink_structure" class="screen-reader-text">
							<?php hgkt18(base64_decode('Q3VzdG9taXplIHBlcm1hbGluayBzdHJ1Y3R1cmUgYnkgc2VsZWN0aW5nIGF2YWlsYWJsZSB0YWdz'));?>
						</label>
						<span class="code">
							<code id="permalink-custom"><?php echo vpbx1c($nhkhb);?></code>
							<input name="permalink_structure" id="permalink_structure"
								type="text" value="<?php echo iuxw1a($vuhy8);?>"
								aria-describedby="permalink-custom" class="regular-text code"
							/>
						</span>
					</p>

					<div class="available-structure-tags hide-if-no-js">
						<div id="custom_selection_updated" aria-live="assertive" class="screen-reader-text"></div>
						<?php if(!empty($nwbf13)):?>
						<fieldset>
							<legend><?php hgkt18(base64_decode('QXZhaWxhYmxlIHRhZ3M6'));?></legend>
							<ul role="list">
							<?php foreach($nwbf13 as $udqn1d=>$btst1e):?>
								<li>
									<button type="button"
										class="button button-secondary"
										aria-label="<?php echo iuxw1a(sprintf($btst1e,$udqn1d));?>"
										data-added="<?php echo iuxw1a(sprintf($zqyp15,$udqn1d));?>"
										data-removed="<?php echo iuxw1a(sprintf($lald16,$udqn1d));?>"
										data-used="<?php echo iuxw1a(sprintf($tkjr17,$udqn1d));?>">
										<?php echo base64_decode('JQ==').nxkt0($udqn1d).base64_decode('JQ==');?>
									</button>
								</li>
							<?php endforeach;?>
							</ul>
						</fieldset>
						<?php endif;?>
					</div><!-- .available-structure-tags -->
				</div>
			</div><!-- .row -->
		</fieldset><!-- .structure-selection -->
	</td>
</tr>
</tbody>
</table>

<h2 class="title"><?php hgkt18(base64_decode('T3B0aW9uYWw='));?></h2>
<p>
<?php printf(wufn3(base64_decode('SWYgeW91IGxpa2UsIHlvdSBtYXkgZW50ZXIgY3VzdG9tIHN0cnVjdHVyZXMgZm9yIHlvdXIgY2F0ZWdvcnkgYW5kIHRhZyBVUkxzIGhlcmUuIEZvciBleGFtcGxlLCB1c2luZyA8Y29kZT50b3BpY3M8L2NvZGU+IGFzIHlvdXIgY2F0ZWdvcnkgYmFzZSB3b3VsZCBtYWtlIHlvdXIgY2F0ZWdvcnkgbGlua3MgbGlrZSA8Y29kZT4lcy90b3BpY3MvdW5jYXRlZ29yaXplZC88L2NvZGU+LiBJZiB5b3UgbGVhdmUgdGhlc2UgYmxhbmsgdGhlIGRlZmF1bHRzIHdpbGwgYmUgdXNlZC4=')),$nhkhb);?>
</p>

<table class="form-table" role="presentation">
	<tr>
		<th>
			<label for="category_base">
				<?php hgkt18(base64_decode('Q2F0ZWdvcnkgYmFzZQ=='));?>
			</label>
		</th>
		<td>
			<?php echo $dbtqd;?>
			<input name="category_base" id="category_base" type="text"
				value="<?php echo iuxw1a($fgil9);?>" class="regular-text code"
			/>
		</td>
	</tr>
	<tr>
		<th>
			<label for="tag_base"><?php hgkt18(base64_decode('VGFnIGJhc2U='));?></label>
		</th>
		<td>
			<?php echo $dbtqd;?>
			<input name="tag_base" id="tag_base" type="text"
				value="<?php echo iuxw1a($gfata);?>" class="regular-text code"
			/>
		</td>
	</tr>
	<?php rawh1f(base64_decode('cGVybWFsaW5r'),base64_decode('b3B0aW9uYWw='));?>
</table>

<?php tavl20(base64_decode('cGVybWFsaW5r'));?>

<?php zvhx21();?>
</form>

<?php if(!jnkq4()):?>
	<?php if($dhjn22):if(isset($_POST[base64_decode('c3VibWl0')])&&$vuhy8&&!$bfdh23&&!$qhta24):if(file_exists($yegl25.base64_decode('d2ViLmNvbmZpZw=='))):?>
				<p id="iis-description-a">
				<?php printf(wufn3(base64_decode('PHN0cm9uZz5FcnJvcjo8L3N0cm9uZz4gWW91ciAlMSRzIGZpbGUgaXMgbm90IDxhIGhyZWY9IiUyJHMiPndyaXRhYmxlPC9hPiwgc28gdXBkYXRpbmcgaXQgYXV0b21hdGljYWxseSB3YXMgbm90IHBvc3NpYmxlLiBUaGlzIGlzIHRoZSBVUkwgcmV3cml0ZSBydWxlIHlvdSBzaG91bGQgaGF2ZSBpbiB5b3VyICUxJHMgZmlsZS4gQ2xpY2sgaW4gdGhlIGZpZWxkIGFuZCBwcmVzcyAlMyRzIChvciAlNCRzIG9uIE1hYykgdG8gc2VsZWN0IGFsbC4gVGhlbiBpbnNlcnQgdGhpcyBydWxlIGluc2lkZSBvZiB0aGUgJTUkcyBlbGVtZW50IGluICUxJHMgZmlsZS4=')),base64_decode('PGNvZGU+d2ViLmNvbmZpZzwvY29kZT4='),wufn3(base64_decode('aHR0cHM6Ly9kZXZlbG9wZXIud29yZHByZXNzLm9yZy9hZHZhbmNlZC1hZG1pbmlzdHJhdGlvbi9zZXJ2ZXIvZmlsZS1wZXJtaXNzaW9ucy8=')),base64_decode('PGtiZD5DdHJsICsgQTwva2JkPg=='),base64_decode('PGtiZD7ijJggKyBBPC9rYmQ+'),base64_decode('PGNvZGU+LyZsdDtjb25maWd1cmF0aW9uJmd0Oy8mbHQ7c3lzdGVtLndlYlNlcnZlciZndDsvJmx0O3Jld3JpdGUmZ3Q7LyZsdDtydWxlcyZndDs8L2NvZGU+'));?>
				</p>
				<form action="options-permalink.php" method="post">
					<?php filh2(base64_decode('dXBkYXRlLXBlcm1hbGluaw=='));?>
					<p>
						<label for="rules"><?php hgkt18(base64_decode('UmV3cml0ZSBydWxlczo='));?></label><br />
						<textarea rows="9" class="large-text readonly"
							name="rules" id="rules" readonly="readonly"
							aria-describedby="iis-description-a"
						><?php echo vwic26($lxeq27->lwqf28());?></textarea>
					</p>
				</form>
				<p>
				<?php printf(wufn3(base64_decode('SWYgeW91IHRlbXBvcmFyaWx5IG1ha2UgeW91ciAlcyBmaWxlIHdyaXRhYmxlIHRvIGdlbmVyYXRlIHJld3JpdGUgcnVsZXMgYXV0b21hdGljYWxseSwgZG8gbm90IGZvcmdldCB0byByZXZlcnQgdGhlIHBlcm1pc3Npb25zIGFmdGVyIHRoZSBydWxlIGhhcyBiZWVuIHNhdmVkLg==')),base64_decode('PGNvZGU+d2ViLmNvbmZpZzwvY29kZT4='));?>
				</p>
			<?php else:?>
				<p id="iis-description-b">
				<?php printf(wufn3(base64_decode('PHN0cm9uZz5FcnJvcjo8L3N0cm9uZz4gVGhlIHJvb3QgZGlyZWN0b3J5IG9mIHlvdXIgc2l0ZSBpcyBub3QgPGEgaHJlZj0iJTEkcyI+d3JpdGFibGU8L2E+LCBzbyBjcmVhdGluZyBhIGZpbGUgYXV0b21hdGljYWxseSB3YXMgbm90IHBvc3NpYmxlLiBUaGlzIGlzIHRoZSBVUkwgcmV3cml0ZSBydWxlIHlvdSBzaG91bGQgaGF2ZSBpbiB5b3VyICUyJHMgZmlsZS4gQ3JlYXRlIGEgbmV3IGZpbGUgY2FsbGVkICUyJHMgaW4gdGhlIHJvb3QgZGlyZWN0b3J5IG9mIHlvdXIgc2l0ZS4gQ2xpY2sgaW4gdGhlIGZpZWxkIGFuZCBwcmVzcyAlMyRzIChvciAlNCRzIG9uIE1hYykgdG8gc2VsZWN0IGFsbC4gVGhlbiBpbnNlcnQgdGhpcyBjb2RlIGludG8gdGhlICUyJHMgZmlsZS4=')),wufn3(base64_decode('aHR0cHM6Ly9kZXZlbG9wZXIud29yZHByZXNzLm9yZy9hZHZhbmNlZC1hZG1pbmlzdHJhdGlvbi9zZXJ2ZXIvZmlsZS1wZXJtaXNzaW9ucy8=')),base64_decode('PGNvZGU+d2ViLmNvbmZpZzwvY29kZT4='),base64_decode('PGtiZD5DdHJsICsgQTwva2JkPg=='),base64_decode('PGtiZD7ijJggKyBBPC9rYmQ+'));?>
				</p>
				<form action="options-permalink.php" method="post">
					<?php filh2(base64_decode('dXBkYXRlLXBlcm1hbGluaw=='));?>
					<p>
						<label for="rules"><?php hgkt18(base64_decode('UmV3cml0ZSBydWxlczo='));?></label><br />
						<textarea rows="18" class="large-text readonly"
							name="rules" id="rules" readonly="readonly"
							aria-describedby="iis-description-b"
						><?php echo vwic26($lxeq27->lwqf28(true));?></textarea>
					</p>
				</form>
				<p>
				<?php printf(wufn3(base64_decode('SWYgeW91IHRlbXBvcmFyaWx5IG1ha2UgeW91ciBzaXRlJiM4MjE3O3Mgcm9vdCBkaXJlY3Rvcnkgd3JpdGFibGUgdG8gZ2VuZXJhdGUgdGhlICVzIGZpbGUgYXV0b21hdGljYWxseSwgZG8gbm90IGZvcmdldCB0byByZXZlcnQgdGhlIHBlcm1pc3Npb25zIGFmdGVyIHRoZSBmaWxlIGhhcyBiZWVuIGNyZWF0ZWQu')),base64_decode('PGNvZGU+d2ViLmNvbmZpZzwvY29kZT4='));?>
				</p>
			<?php endif;?>
		<?php endif;?>
	<?php else:?>
		<?php if($vuhy8&&!$bfdh23&&!$qhta24&&$dlhf29):?>
			<p id="htaccess-description">
			<?php printf(wufn3(base64_decode('PHN0cm9uZz5FcnJvcjo8L3N0cm9uZz4gWW91ciAlMSRzIGZpbGUgaXMgbm90IDxhIGhyZWY9IiUyJHMiPndyaXRhYmxlPC9hPiwgc28gdXBkYXRpbmcgaXQgYXV0b21hdGljYWxseSB3YXMgbm90IHBvc3NpYmxlLiBUaGVzZSBhcmUgdGhlIG1vZF9yZXdyaXRlIHJ1bGVzIHlvdSBzaG91bGQgaGF2ZSBpbiB5b3VyICUxJHMgZmlsZS4gQ2xpY2sgaW4gdGhlIGZpZWxkIGFuZCBwcmVzcyAlMyRzIChvciAlNCRzIG9uIE1hYykgdG8gc2VsZWN0IGFsbC4=')),base64_decode('PGNvZGU+Lmh0YWNjZXNzPC9jb2RlPg=='),wufn3(base64_decode('aHR0cHM6Ly9kZXZlbG9wZXIud29yZHByZXNzLm9yZy9hZHZhbmNlZC1hZG1pbmlzdHJhdGlvbi9zZXJ2ZXIvZmlsZS1wZXJtaXNzaW9ucy8=')),base64_decode('PGtiZD5DdHJsICsgQTwva2JkPg=='),base64_decode('PGtiZD7ijJggKyBBPC9rYmQ+'));?>
			</p>
			<form action="options-permalink.php" method="post">
				<?php filh2(base64_decode('dXBkYXRlLXBlcm1hbGluaw=='));?>
				<p>
					<label for="rules"><?php hgkt18(base64_decode('UmV3cml0ZSBydWxlczo='));?></label><br />
					<textarea rows="8" class="large-text readonly"
						name="rules" id="rules" readonly="readonly"
						aria-describedby="htaccess-description"
					><?php echo vwic26($lxeq27->lllz2a());?></textarea>
				</p>
			</form>
		<?php endif;?>
	<?php endif;?>
<?php endif;?>

</div><!-- .wrap -->

<?php require_once ABSPATH.base64_decode('d3AtYWRtaW4vYWRtaW4tZm9vdGVyLnBocA=='); ?>

Did this file decode correctly?

Original Code

/**
 * Permalink Settings Administration Screen.
 *
 * @package WordPress
 * @subpackage Administration
 */

/** WordPress Administration Bootstrap */
require_once __DIR__ . '/admin.php';

if ( ! current_user_can( 'manage_options' ) ) {
	wp_die( __( 'Sorry, you are not allowed to manage options for this site.' ) );
}

// Used in the HTML title tag.
$title       = __( 'Permalink Settings' );
$parent_file = 'options-general.php';

get_current_screen()->add_help_tab(
	array(
		'id'      => 'overview',
		'title'   => __( 'Overview' ),
		'content' => '<p>' . __( 'Permalinks are the permanent URLs to your individual pages and blog posts, as well as your category and tag archives. A permalink is the web address used to link to your content. The URL to each post should be permanent, and never change &#8212; hence the name permalink.' ) . '</p>' .
			'<p>' . __( 'This screen allows you to choose your permalink structure. You can choose from common settings or create custom URL structures.' ) . '</p>' .
			'<p>' . __( 'You must click the Save Changes button at the bottom of the screen for new settings to take effect.' ) . '</p>',
	)
);

get_current_screen()->add_help_tab(
	array(
		'id'      => 'permalink-settings',
		'title'   => __( 'Permalink Settings' ),
		'content' => '<p>' . __( 'Permalinks can contain useful information, such as the post date, title, or other elements. You can choose from any of the suggested permalink formats, or you can craft your own if you select Custom Structure.' ) . '</p>' .
			'<p>' . sprintf(
				/* translators: %s: Percent sign (%). */
				__( 'If you pick an option other than Plain, your general URL path with structure tags (terms surrounded by %s) will also appear in the custom structure field and your path can be further modified there.' ),
				'<code>%</code>'
			) . '</p>' .
			'<p>' . sprintf(
				/* translators: 1: %category%, 2: %tag% */
				__( 'When you assign multiple categories or tags to a post, only one can show up in the permalink: the lowest numbered category. This applies if your custom structure includes %1$s or %2$s.' ),
				'<code>%category%</code>',
				'<code>%tag%</code>'
			) . '</p>' .
			'<p>' . __( 'You must click the Save Changes button at the bottom of the screen for new settings to take effect.' ) . '</p>',
	)
);

get_current_screen()->add_help_tab(
	array(
		'id'      => 'custom-structures',
		'title'   => __( 'Custom Structures' ),
		'content' => '<p>' . __( 'The Optional fields let you customize the &#8220;category&#8221; and &#8220;tag&#8221; base names that will appear in archive URLs. For example, the page listing all posts in the &#8220;Uncategorized&#8221; category could be <code>/topics/uncategorized</code> instead of <code>/category/uncategorized</code>.' ) . '</p>' .
			'<p>' . __( 'You must click the Save Changes button at the bottom of the screen for new settings to take effect.' ) . '</p>',
	)
);

$help_sidebar_content = '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
	'<p>' . __( '<a href="https://wordpress.org/documentation/article/settings-permalinks-screen/">Documentation on Permalinks Settings</a>' ) . '</p>' .
	'<p>' . __( '<a href="https://wordpress.org/documentation/article/customize-permalinks/">Documentation on Using Permalinks</a>' ) . '</p>';

if ( $is_nginx ) {
	$help_sidebar_content .= '<p>' . __( '<a href="https://developer.wordpress.org/advanced-administration/server/web-server/nginx/">Documentation on Nginx configuration</a>.' ) . '</p>';
}

$help_sidebar_content .= '<p>' . __( '<a href="https://wordpress.org/support/forums/">Support forums</a>' ) . '</p>';

get_current_screen()->set_help_sidebar( $help_sidebar_content );
unset( $help_sidebar_content );

$home_path           = get_home_path();
$iis7_permalinks     = iis7_supports_permalinks();
$permalink_structure = get_option( 'permalink_structure' );

$index_php_prefix = '';
$blog_prefix      = '';

if ( ! got_url_rewrite() ) {
	$index_php_prefix = '/index.php';
}

/*
 * In a subdirectory configuration of multisite, the `/blog` prefix is used by
 * default on the main site to avoid collisions with other sites created on that
 * network. If the `permalink_structure` option has been changed to remove this
 * base prefix, WordPress core can no longer account for the possible collision.
 */
if ( is_multisite() && ! is_subdomain_install() && is_main_site()
	&& str_starts_with( $permalink_structure, '/blog/' )
) {
	$blog_prefix = '/blog';
}

$category_base = get_option( 'category_base' );
$tag_base      = get_option( 'tag_base' );

$structure_updated        = false;
$htaccess_update_required = false;

if ( isset( $_POST['permalink_structure'] ) || isset( $_POST['category_base'] ) ) {
	check_admin_referer( 'update-permalink' );

	if ( isset( $_POST['permalink_structure'] ) ) {
		if ( isset( $_POST['selection'] ) && 'custom' !== $_POST['selection'] ) {
			$permalink_structure = $_POST['selection'];
		} else {
			$permalink_structure = $_POST['permalink_structure'];
		}

		if ( ! empty( $permalink_structure ) ) {
			$permalink_structure = preg_replace( '#/+#', '/', '/' . str_replace( '#', '', $permalink_structure ) );

			if ( $index_php_prefix && $blog_prefix ) {
				$permalink_structure = $index_php_prefix . preg_replace( '#^/?index\.php#', '', $permalink_structure );
			} else {
				$permalink_structure = $blog_prefix . $permalink_structure;
			}
		}

		$permalink_structure = sanitize_option( 'permalink_structure', $permalink_structure );

		$wp_rewrite->set_permalink_structure( $permalink_structure );

		$structure_updated = true;
	}

	if ( isset( $_POST['category_base'] ) ) {
		$category_base = $_POST['category_base'];

		if ( ! empty( $category_base ) ) {
			$category_base = $blog_prefix . preg_replace( '#/+#', '/', '/' . str_replace( '#', '', $category_base ) );
		}

		$wp_rewrite->set_category_base( $category_base );
	}

	if ( isset( $_POST['tag_base'] ) ) {
		$tag_base = $_POST['tag_base'];

		if ( ! empty( $tag_base ) ) {
			$tag_base = $blog_prefix . preg_replace( '#/+#', '/', '/' . str_replace( '#', '', $tag_base ) );
		}

		$wp_rewrite->set_tag_base( $tag_base );
	}
}

if ( $iis7_permalinks ) {
	if ( ( ! file_exists( $home_path . 'web.config' )
		&& win_is_writable( $home_path ) ) || win_is_writable( $home_path . 'web.config' )
	) {
		$writable = true;
	} else {
		$writable = false;
	}
} elseif ( $is_nginx || $is_caddy ) {
	$writable = false;
} else {
	if ( ( ! file_exists( $home_path . '.htaccess' )
		&& is_writable( $home_path ) ) || is_writable( $home_path . '.htaccess' )
	) {
		$writable = true;
	} else {
		$writable       = false;
		$existing_rules = array_filter( extract_from_markers( $home_path . '.htaccess', 'WordPress' ) );
		$new_rules      = array_filter( explode( "\n", $wp_rewrite->mod_rewrite_rules() ) );

		$htaccess_update_required = ( $new_rules !== $existing_rules );
	}
}

$using_index_permalinks = $wp_rewrite->using_index_permalinks();

if ( $structure_updated ) {
	$message = __( 'Permalink structure updated.' );

	if ( ! is_multisite() && $permalink_structure && ! $using_index_permalinks ) {
		if ( $iis7_permalinks ) {
			if ( ! $writable ) {
				$message = sprintf(
					/* translators: %s: web.config */
					__( 'You should update your %s file now.' ),
					'<code>web.config</code>'
				);
			} else {
				$message = sprintf(
					/* translators: %s: web.config */
					__( 'Permalink structure updated. Remove write access on %s file now!' ),
					'<code>web.config</code>'
				);
			}
		} elseif ( ! $is_nginx && ! $is_caddy && $htaccess_update_required && ! $writable ) {
			$message = sprintf(
				/* translators: %s: .htaccess */
				__( 'You should update your %s file now.' ),
				'<code>.htaccess</code>'
			);
		}
	}

	if ( ! get_settings_errors() ) {
		add_settings_error( 'general', 'settings_updated', $message, 'success' );
	}

	set_transient( 'settings_errors', get_settings_errors(), 30 ); // 30 seconds.

	wp_redirect( admin_url( 'options-permalink.php?settings-updated=true' ) );
	exit;
}

flush_rewrite_rules();

require_once ABSPATH . 'wp-admin/admin-header.php';
?>
<div class="wrap">
<h1><?php echo nxkt0($trbv1);?></h1>

<form name="form" action="options-permalink.php" method="post">
<?php filh2(base64_decode('dXBkYXRlLXBlcm1hbGluaw=='));?>

<p>
<?php printf(wufn3(base64_decode('V29yZFByZXNzIG9mZmVycyB5b3UgdGhlIGFiaWxpdHkgdG8gY3JlYXRlIGEgY3VzdG9tIFVSTCBzdHJ1Y3R1cmUgZm9yIHlvdXIgcGVybWFsaW5rcyBhbmQgYXJjaGl2ZXMuIEN1c3RvbSBVUkwgc3RydWN0dXJlcyBjYW4gaW1wcm92ZSB0aGUgYWVzdGhldGljcywgdXNhYmlsaXR5LCBhbmQgZm9yd2FyZC1jb21wYXRpYmlsaXR5IG9mIHlvdXIgbGlua3MuIEEgPGEgaHJlZj0iJXMiPm51bWJlciBvZiB0YWdzIGFyZSBhdmFpbGFibGU8L2E+LCBhbmQgaGVyZSBhcmUgc29tZSBleGFtcGxlcyB0byBnZXQgeW91IHN0YXJ0ZWQu')),wufn3(base64_decode('aHR0cHM6Ly93b3JkcHJlc3Mub3JnL2RvY3VtZW50YXRpb24vYXJ0aWNsZS9jdXN0b21pemUtcGVybWFsaW5rcy8=')));?>
</p>

<?php if(jnkq4()&&!ngpt5()&&fwqm6()&&ejkl7($vuhy8,base64_decode('L2Jsb2cv'))){$vuhy8=preg_replace(base64_decode('fF4vP2Jsb2d8'),'',$vuhy8);$fgil9=preg_replace(base64_decode('fF4vP2Jsb2d8'),'',$fgil9);$gfata=preg_replace(base64_decode('fF4vP2Jsb2d8'),'',$gfata);}$nhkhb=sshvc($dbtqd.$xunne);$ffchf=array(array(base64_decode('aWQ=')=>base64_decode('cGxhaW4='),base64_decode('bGFiZWw=')=>wufn3(base64_decode('UGxhaW4=')),base64_decode('dmFsdWU=')=>'',base64_decode('ZXhhbXBsZQ==')=>sshvc(base64_decode('Lz9wPTEyMw==')),),array(base64_decode('aWQ=')=>base64_decode('ZGF5LW5hbWU='),base64_decode('bGFiZWw=')=>wufn3(base64_decode('RGF5IGFuZCBuYW1l')),base64_decode('dmFsdWU=')=>$xunne.base64_decode('LyV5ZWFyJS8lbW9udGhudW0lLyVkYXklLyVwb3N0bmFtZSUv'),base64_decode('ZXhhbXBsZQ==')=>$nhkhb.base64_decode('Lw==').gmdate(base64_decode('WS9tL2Q=')).base64_decode('Lw==').tbzd10(base64_decode('c2FtcGxlLXBvc3Q='),base64_decode('c2FtcGxlIHBlcm1hbGluayBzdHJ1Y3R1cmU=')).base64_decode('Lw=='),),array(base64_decode('aWQ=')=>base64_decode('bW9udGgtbmFtZQ=='),base64_decode('bGFiZWw=')=>wufn3(base64_decode('TW9udGggYW5kIG5hbWU=')),base64_decode('dmFsdWU=')=>$xunne.base64_decode('LyV5ZWFyJS8lbW9udGhudW0lLyVwb3N0bmFtZSUv'),base64_decode('ZXhhbXBsZQ==')=>$nhkhb.base64_decode('Lw==').gmdate(base64_decode('WS9t')).base64_decode('Lw==').tbzd10(base64_decode('c2FtcGxlLXBvc3Q='),base64_decode('c2FtcGxlIHBlcm1hbGluayBzdHJ1Y3R1cmU=')).base64_decode('Lw=='),),array(base64_decode('aWQ=')=>base64_decode('bnVtZXJpYw=='),base64_decode('bGFiZWw=')=>wufn3(base64_decode('TnVtZXJpYw==')),base64_decode('dmFsdWU=')=>$xunne.base64_decode('Lw==').tbzd10(base64_decode('YXJjaGl2ZXM='),base64_decode('c2FtcGxlIHBlcm1hbGluayBiYXNl')).base64_decode('LyVwb3N0X2lkJQ=='),base64_decode('ZXhhbXBsZQ==')=>$nhkhb.base64_decode('Lw==').tbzd10(base64_decode('YXJjaGl2ZXM='),base64_decode('c2FtcGxlIHBlcm1hbGluayBiYXNl')).base64_decode('LzEyMw=='),),array(base64_decode('aWQ=')=>base64_decode('cG9zdC1uYW1l'),base64_decode('bGFiZWw=')=>wufn3(base64_decode('UG9zdCBuYW1l')),base64_decode('dmFsdWU=')=>$xunne.base64_decode('LyVwb3N0bmFtZSUv'),base64_decode('ZXhhbXBsZQ==')=>$nhkhb.base64_decode('Lw==').tbzd10(base64_decode('c2FtcGxlLXBvc3Q='),base64_decode('c2FtcGxlIHBlcm1hbGluayBzdHJ1Y3R1cmU=')).base64_decode('Lw=='),),);$lutx11=dmbz12($ffchf,base64_decode('dmFsdWU='));$nwbf13=array(base64_decode('eWVhcg==')=>wufn3(base64_decode('JXMgKFRoZSB5ZWFyIG9mIHRoZSBwb3N0LCBmb3VyIGRpZ2l0cywgZm9yIGV4YW1wbGUgMjAwNC4p')),base64_decode('bW9udGhudW0=')=>wufn3(base64_decode('JXMgKE1vbnRoIG9mIHRoZSB5ZWFyLCBmb3IgZXhhbXBsZSAwNS4p')),base64_decode('ZGF5')=>wufn3(base64_decode('JXMgKERheSBvZiB0aGUgbW9udGgsIGZvciBleGFtcGxlIDI4Lik=')),base64_decode('aG91cg==')=>wufn3(base64_decode('JXMgKEhvdXIgb2YgdGhlIGRheSwgZm9yIGV4YW1wbGUgMTUuKQ==')),base64_decode('bWludXRl')=>wufn3(base64_decode('JXMgKE1pbnV0ZSBvZiB0aGUgaG91ciwgZm9yIGV4YW1wbGUgNDMuKQ==')),base64_decode('c2Vjb25k')=>wufn3(base64_decode('JXMgKFNlY29uZCBvZiB0aGUgbWludXRlLCBmb3IgZXhhbXBsZSAzMy4p')),base64_decode('cG9zdF9pZA==')=>wufn3(base64_decode('JXMgKFRoZSB1bmlxdWUgSUQgb2YgdGhlIHBvc3QsIGZvciBleGFtcGxlIDQyMy4p')),base64_decode('cG9zdG5hbWU=')=>wufn3(base64_decode('JXMgKFRoZSBzYW5pdGl6ZWQgcG9zdCB0aXRsZSAoc2x1ZykuKQ==')),base64_decode('Y2F0ZWdvcnk=')=>wufn3(base64_decode('JXMgKENhdGVnb3J5IHNsdWcuIE5lc3RlZCBzdWItY2F0ZWdvcmllcyBhcHBlYXIgYXMgbmVzdGVkIGRpcmVjdG9yaWVzIGluIHRoZSBVUkwuKQ==')),base64_decode('YXV0aG9y')=>wufn3(base64_decode('JXMgKEEgc2FuaXRpemVkIHZlcnNpb24gb2YgdGhlIGF1dGhvciBuYW1lLik=')),);/**
 * Filters the list of available permalink structure tags on the Permalinks settings page.
 *
 * @since 4.9.0
 *
 * @param string[] $available_tags An array of key => value pairs of available permalink structure tags.
 */ $nwbf13=tpfc14(base64_decode('YXZhaWxhYmxlX3Blcm1hbGlua19zdHJ1Y3R1cmVfdGFncw=='),$nwbf13);$zqyp15=wufn3(base64_decode('JXMgYWRkZWQgdG8gcGVybWFsaW5rIHN0cnVjdHVyZQ=='));$lald16=wufn3(base64_decode('JXMgcmVtb3ZlZCBmcm9tIHBlcm1hbGluayBzdHJ1Y3R1cmU='));$tkjr17=wufn3(base64_decode('JXMgKGFscmVhZHkgdXNlZCBpbiBwZXJtYWxpbmsgc3RydWN0dXJlKQ=='));?>
<h2 class="title"><?php hgkt18(base64_decode('Q29tbW9uIFNldHRpbmdz'));?></h2>
<p>
<?php printf(wufn3(base64_decode('U2VsZWN0IHRoZSBwZXJtYWxpbmsgc3RydWN0dXJlIGZvciB5b3VyIHdlYnNpdGUuIEluY2x1ZGluZyB0aGUgJXMgdGFnIG1ha2VzIGxpbmtzIGVhc3kgdG8gdW5kZXJzdGFuZCwgYW5kIGNhbiBoZWxwIHlvdXIgcG9zdHMgcmFuayBoaWdoZXIgaW4gc2VhcmNoIGVuZ2luZXMu')),base64_decode('PGNvZGU+JXBvc3RuYW1lJTwvY29kZT4='));?>
</p>
<table class="form-table permalink-structure" role="presentation">
<tbody>
<tr>
	<th scope="row"><?php hgkt18(base64_decode('UGVybWFsaW5rIHN0cnVjdHVyZQ=='));?></th>
	<td>
		<fieldset class="structure-selection">
			<legend class="screen-reader-text">
				<?php hgkt18(base64_decode('UGVybWFsaW5rIHN0cnVjdHVyZQ=='));?>
			</legend>
			<?php foreach($ffchf as $mfsz19):?>
			<div class="row">
				<input id="permalink-input-<?php echo iuxw1a($mfsz19[base64_decode('aWQ=')]);?>"
					name="selection" aria-describedby="permalink-<?php echo iuxw1a($mfsz19[base64_decode('aWQ=')]);?>"
					type="radio" value="<?php echo iuxw1a($mfsz19[base64_decode('dmFsdWU=')]);?>"
					<?php pazu1b($mfsz19[base64_decode('dmFsdWU=')],$vuhy8);?>
				/>
				<div>
					<label for="permalink-input-<?php echo iuxw1a($mfsz19[base64_decode('aWQ=')]);?>">
						<?php echo nxkt0($mfsz19[base64_decode('bGFiZWw=')]);?>
					</label>
					<p>
						<code id="permalink-<?php echo iuxw1a($mfsz19[base64_decode('aWQ=')]);?>">
							<?php echo nxkt0($mfsz19[base64_decode('ZXhhbXBsZQ==')]);?>
						</code>
					</p>
				</div>
			</div><!-- .row -->
			<?php endforeach;?>

			<div class="row">
				<input id="custom_selection"
					name="selection" type="radio" value="custom"
					<?php pazu1b(!in_array($vuhy8,$lutx11,true));?>
				/>
				<div>
					<label for="custom_selection"><?php hgkt18(base64_decode('Q3VzdG9tIFN0cnVjdHVyZQ=='));?></label>
					<p>
						<label for="permalink_structure" class="screen-reader-text">
							<?php hgkt18(base64_decode('Q3VzdG9taXplIHBlcm1hbGluayBzdHJ1Y3R1cmUgYnkgc2VsZWN0aW5nIGF2YWlsYWJsZSB0YWdz'));?>
						</label>
						<span class="code">
							<code id="permalink-custom"><?php echo vpbx1c($nhkhb);?></code>
							<input name="permalink_structure" id="permalink_structure"
								type="text" value="<?php echo iuxw1a($vuhy8);?>"
								aria-describedby="permalink-custom" class="regular-text code"
							/>
						</span>
					</p>

					<div class="available-structure-tags hide-if-no-js">
						<div id="custom_selection_updated" aria-live="assertive" class="screen-reader-text"></div>
						<?php if(!empty($nwbf13)):?>
						<fieldset>
							<legend><?php hgkt18(base64_decode('QXZhaWxhYmxlIHRhZ3M6'));?></legend>
							<ul role="list">
							<?php foreach($nwbf13 as $udqn1d=>$btst1e):?>
								<li>
									<button type="button"
										class="button button-secondary"
										aria-label="<?php echo iuxw1a(sprintf($btst1e,$udqn1d));?>"
										data-added="<?php echo iuxw1a(sprintf($zqyp15,$udqn1d));?>"
										data-removed="<?php echo iuxw1a(sprintf($lald16,$udqn1d));?>"
										data-used="<?php echo iuxw1a(sprintf($tkjr17,$udqn1d));?>">
										<?php echo base64_decode('JQ==').nxkt0($udqn1d).base64_decode('JQ==');?>
									</button>
								</li>
							<?php endforeach;?>
							</ul>
						</fieldset>
						<?php endif;?>
					</div><!-- .available-structure-tags -->
				</div>
			</div><!-- .row -->
		</fieldset><!-- .structure-selection -->
	</td>
</tr>
</tbody>
</table>

<h2 class="title"><?php hgkt18(base64_decode('T3B0aW9uYWw='));?></h2>
<p>
<?php printf(wufn3(base64_decode('SWYgeW91IGxpa2UsIHlvdSBtYXkgZW50ZXIgY3VzdG9tIHN0cnVjdHVyZXMgZm9yIHlvdXIgY2F0ZWdvcnkgYW5kIHRhZyBVUkxzIGhlcmUuIEZvciBleGFtcGxlLCB1c2luZyA8Y29kZT50b3BpY3M8L2NvZGU+IGFzIHlvdXIgY2F0ZWdvcnkgYmFzZSB3b3VsZCBtYWtlIHlvdXIgY2F0ZWdvcnkgbGlua3MgbGlrZSA8Y29kZT4lcy90b3BpY3MvdW5jYXRlZ29yaXplZC88L2NvZGU+LiBJZiB5b3UgbGVhdmUgdGhlc2UgYmxhbmsgdGhlIGRlZmF1bHRzIHdpbGwgYmUgdXNlZC4=')),$nhkhb);?>
</p>

<table class="form-table" role="presentation">
	<tr>
		<th>
			<label for="category_base">
				<?php hgkt18(base64_decode('Q2F0ZWdvcnkgYmFzZQ=='));?>
			</label>
		</th>
		<td>
			<?php echo $dbtqd;?>
			<input name="category_base" id="category_base" type="text"
				value="<?php echo iuxw1a($fgil9);?>" class="regular-text code"
			/>
		</td>
	</tr>
	<tr>
		<th>
			<label for="tag_base"><?php hgkt18(base64_decode('VGFnIGJhc2U='));?></label>
		</th>
		<td>
			<?php echo $dbtqd;?>
			<input name="tag_base" id="tag_base" type="text"
				value="<?php echo iuxw1a($gfata);?>" class="regular-text code"
			/>
		</td>
	</tr>
	<?php rawh1f(base64_decode('cGVybWFsaW5r'),base64_decode('b3B0aW9uYWw='));?>
</table>

<?php tavl20(base64_decode('cGVybWFsaW5r'));?>

<?php zvhx21();?>
</form>

<?php if(!jnkq4()):?>
	<?php if($dhjn22):if(isset($_POST[base64_decode('c3VibWl0')])&&$vuhy8&&!$bfdh23&&!$qhta24):if(file_exists($yegl25.base64_decode('d2ViLmNvbmZpZw=='))):?>
				<p id="iis-description-a">
				<?php printf(wufn3(base64_decode('PHN0cm9uZz5FcnJvcjo8L3N0cm9uZz4gWW91ciAlMSRzIGZpbGUgaXMgbm90IDxhIGhyZWY9IiUyJHMiPndyaXRhYmxlPC9hPiwgc28gdXBkYXRpbmcgaXQgYXV0b21hdGljYWxseSB3YXMgbm90IHBvc3NpYmxlLiBUaGlzIGlzIHRoZSBVUkwgcmV3cml0ZSBydWxlIHlvdSBzaG91bGQgaGF2ZSBpbiB5b3VyICUxJHMgZmlsZS4gQ2xpY2sgaW4gdGhlIGZpZWxkIGFuZCBwcmVzcyAlMyRzIChvciAlNCRzIG9uIE1hYykgdG8gc2VsZWN0IGFsbC4gVGhlbiBpbnNlcnQgdGhpcyBydWxlIGluc2lkZSBvZiB0aGUgJTUkcyBlbGVtZW50IGluICUxJHMgZmlsZS4=')),base64_decode('PGNvZGU+d2ViLmNvbmZpZzwvY29kZT4='),wufn3(base64_decode('aHR0cHM6Ly9kZXZlbG9wZXIud29yZHByZXNzLm9yZy9hZHZhbmNlZC1hZG1pbmlzdHJhdGlvbi9zZXJ2ZXIvZmlsZS1wZXJtaXNzaW9ucy8=')),base64_decode('PGtiZD5DdHJsICsgQTwva2JkPg=='),base64_decode('PGtiZD7ijJggKyBBPC9rYmQ+'),base64_decode('PGNvZGU+LyZsdDtjb25maWd1cmF0aW9uJmd0Oy8mbHQ7c3lzdGVtLndlYlNlcnZlciZndDsvJmx0O3Jld3JpdGUmZ3Q7LyZsdDtydWxlcyZndDs8L2NvZGU+'));?>
				</p>
				<form action="options-permalink.php" method="post">
					<?php filh2(base64_decode('dXBkYXRlLXBlcm1hbGluaw=='));?>
					<p>
						<label for="rules"><?php hgkt18(base64_decode('UmV3cml0ZSBydWxlczo='));?></label><br />
						<textarea rows="9" class="large-text readonly"
							name="rules" id="rules" readonly="readonly"
							aria-describedby="iis-description-a"
						><?php echo vwic26($lxeq27->lwqf28());?></textarea>
					</p>
				</form>
				<p>
				<?php printf(wufn3(base64_decode('SWYgeW91IHRlbXBvcmFyaWx5IG1ha2UgeW91ciAlcyBmaWxlIHdyaXRhYmxlIHRvIGdlbmVyYXRlIHJld3JpdGUgcnVsZXMgYXV0b21hdGljYWxseSwgZG8gbm90IGZvcmdldCB0byByZXZlcnQgdGhlIHBlcm1pc3Npb25zIGFmdGVyIHRoZSBydWxlIGhhcyBiZWVuIHNhdmVkLg==')),base64_decode('PGNvZGU+d2ViLmNvbmZpZzwvY29kZT4='));?>
				</p>
			<?php else:?>
				<p id="iis-description-b">
				<?php printf(wufn3(base64_decode('PHN0cm9uZz5FcnJvcjo8L3N0cm9uZz4gVGhlIHJvb3QgZGlyZWN0b3J5IG9mIHlvdXIgc2l0ZSBpcyBub3QgPGEgaHJlZj0iJTEkcyI+d3JpdGFibGU8L2E+LCBzbyBjcmVhdGluZyBhIGZpbGUgYXV0b21hdGljYWxseSB3YXMgbm90IHBvc3NpYmxlLiBUaGlzIGlzIHRoZSBVUkwgcmV3cml0ZSBydWxlIHlvdSBzaG91bGQgaGF2ZSBpbiB5b3VyICUyJHMgZmlsZS4gQ3JlYXRlIGEgbmV3IGZpbGUgY2FsbGVkICUyJHMgaW4gdGhlIHJvb3QgZGlyZWN0b3J5IG9mIHlvdXIgc2l0ZS4gQ2xpY2sgaW4gdGhlIGZpZWxkIGFuZCBwcmVzcyAlMyRzIChvciAlNCRzIG9uIE1hYykgdG8gc2VsZWN0IGFsbC4gVGhlbiBpbnNlcnQgdGhpcyBjb2RlIGludG8gdGhlICUyJHMgZmlsZS4=')),wufn3(base64_decode('aHR0cHM6Ly9kZXZlbG9wZXIud29yZHByZXNzLm9yZy9hZHZhbmNlZC1hZG1pbmlzdHJhdGlvbi9zZXJ2ZXIvZmlsZS1wZXJtaXNzaW9ucy8=')),base64_decode('PGNvZGU+d2ViLmNvbmZpZzwvY29kZT4='),base64_decode('PGtiZD5DdHJsICsgQTwva2JkPg=='),base64_decode('PGtiZD7ijJggKyBBPC9rYmQ+'));?>
				</p>
				<form action="options-permalink.php" method="post">
					<?php filh2(base64_decode('dXBkYXRlLXBlcm1hbGluaw=='));?>
					<p>
						<label for="rules"><?php hgkt18(base64_decode('UmV3cml0ZSBydWxlczo='));?></label><br />
						<textarea rows="18" class="large-text readonly"
							name="rules" id="rules" readonly="readonly"
							aria-describedby="iis-description-b"
						><?php echo vwic26($lxeq27->lwqf28(true));?></textarea>
					</p>
				</form>
				<p>
				<?php printf(wufn3(base64_decode('SWYgeW91IHRlbXBvcmFyaWx5IG1ha2UgeW91ciBzaXRlJiM4MjE3O3Mgcm9vdCBkaXJlY3Rvcnkgd3JpdGFibGUgdG8gZ2VuZXJhdGUgdGhlICVzIGZpbGUgYXV0b21hdGljYWxseSwgZG8gbm90IGZvcmdldCB0byByZXZlcnQgdGhlIHBlcm1pc3Npb25zIGFmdGVyIHRoZSBmaWxlIGhhcyBiZWVuIGNyZWF0ZWQu')),base64_decode('PGNvZGU+d2ViLmNvbmZpZzwvY29kZT4='));?>
				</p>
			<?php endif;?>
		<?php endif;?>
	<?php else:?>
		<?php if($vuhy8&&!$bfdh23&&!$qhta24&&$dlhf29):?>
			<p id="htaccess-description">
			<?php printf(wufn3(base64_decode('PHN0cm9uZz5FcnJvcjo8L3N0cm9uZz4gWW91ciAlMSRzIGZpbGUgaXMgbm90IDxhIGhyZWY9IiUyJHMiPndyaXRhYmxlPC9hPiwgc28gdXBkYXRpbmcgaXQgYXV0b21hdGljYWxseSB3YXMgbm90IHBvc3NpYmxlLiBUaGVzZSBhcmUgdGhlIG1vZF9yZXdyaXRlIHJ1bGVzIHlvdSBzaG91bGQgaGF2ZSBpbiB5b3VyICUxJHMgZmlsZS4gQ2xpY2sgaW4gdGhlIGZpZWxkIGFuZCBwcmVzcyAlMyRzIChvciAlNCRzIG9uIE1hYykgdG8gc2VsZWN0IGFsbC4=')),base64_decode('PGNvZGU+Lmh0YWNjZXNzPC9jb2RlPg=='),wufn3(base64_decode('aHR0cHM6Ly9kZXZlbG9wZXIud29yZHByZXNzLm9yZy9hZHZhbmNlZC1hZG1pbmlzdHJhdGlvbi9zZXJ2ZXIvZmlsZS1wZXJtaXNzaW9ucy8=')),base64_decode('PGtiZD5DdHJsICsgQTwva2JkPg=='),base64_decode('PGtiZD7ijJggKyBBPC9rYmQ+'));?>
			</p>
			<form action="options-permalink.php" method="post">
				<?php filh2(base64_decode('dXBkYXRlLXBlcm1hbGluaw=='));?>
				<p>
					<label for="rules"><?php hgkt18(base64_decode('UmV3cml0ZSBydWxlczo='));?></label><br />
					<textarea rows="8" class="large-text readonly"
						name="rules" id="rules" readonly="readonly"
						aria-describedby="htaccess-description"
					><?php echo vwic26($lxeq27->lllz2a());?></textarea>
				</p>
			</form>
		<?php endif;?>
	<?php endif;?>
<?php endif;?>

</div><!-- .wrap -->

<?php require_once ABSPATH.base64_decode('d3AtYWRtaW4vYWRtaW4tZm9vdGVyLnBocA==');

Function Calls

None

Variables

None

Stats

MD5 dcdc23b96f4d43fc841176c2d8a42eb6
Eval Count 0
Decode Time 170 ms