Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
if ( post_password_required() ) { return; } ?> <div class="post-comments"> <div id="..
Decoded Output download
<? if ( post_password_required() ) {
return;
}
?>
<div class="post-comments">
<div id="comments" class="comments-area">
<?php if ( have_comments() ) : ?>
<h2 class="comments-title">
<?php
$comments_number = get_comments_number();
if ( '1' === $comments_number ) {
/* translators: %s: post title */
printf( _x( 'One Reply to “%s”', 'comments title', 'noteblog' ), get_the_title() );
} else {
printf(
/* translators: 1: number of comments, 2: post title */
_nx(
'%1$s Reply to “%2$s”',
'%1$s Replies to “%2$s”',
$comments_number,
'comments title',
'noteblog'
),
number_format_i18n( $comments_number ),
get_the_title()
);
}
?>
Did this file decode correctly?
Original Code
if ( post_password_required() ) {
return;
}
?>
<div class="post-comments">
<div id="comments" class="comments-area">
<?php if ( have_comments() ) : ?>
<h2 class="comments-title">
<?php
$comments_number = get_comments_number();
if ( '1' === $comments_number ) {
/* translators: %s: post title */
printf( _x( 'One Reply to “%s”', 'comments title', 'noteblog' ), get_the_title() );
} else {
printf(
/* translators: 1: number of comments, 2: post title */
_nx(
'%1$s Reply to “%2$s”',
'%1$s Replies to “%2$s”',
$comments_number,
'comments title',
'noteblog'
),
number_format_i18n( $comments_number ),
get_the_title()
);
}
?>
Function Calls
None |
Stats
MD5 | 95721ee8d5ce58d043a507e9dfdaf1cf |
Eval Count | 0 |
Decode Time | 136 ms |