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

Signing you up...

Thank you for signing up!

PHP Decode

<?php /** * Callback functions for comments * * @since AcmePhoto 1.0.0 * * @par..

Decoded Output download

<?php 
/** 
 * Callback functions for comments 
 * 
 * @since AcmePhoto 1.0.0 
 * 
 * @param $comment 
 * @param $args 
 * @param $depth 
 * @return void 
 * 
 */ 
if ( !function_exists('acmephoto_commment_list') ) : 
 
    function acmephoto_commment_list($comment, $args, $depth) { 
        $GLOBALS['comment'] = $comment; 
        extract($args, EXTR_SKIP); 
        if ('div' == $args['style']) { 
            $tag = 'div'; 
            $add_below = 'comment'; 
        } 
        else { 
            $tag = 'li'; 
            $add_below = 'div-comment'; 
        } 
        ?> 
        <<?php echo $tag ?> 
        <?php comment_class(empty($args['has_children']) ? '' : 'parent') ?> id="comment-<?php comment_ID() ?>"> 
        <?php if ('div' != $args['style']) : ?> 
            <div id="div-comment-<?php comment_ID() ?>" class="comment-body clearfix"> 
        <?php endif; ?> 
        <div class="comment-author vcard"> 
            <?php if ($args['avatar_size'] != 0) echo get_avatar($comment, '64'); ?> 
            <?php printf(__('<cite class="fn">%s</cite>', 'acmephoto' ), get_comment_author_link()); ?> 
        </div> 
        <?php if ($comment->comment_approved == '0') : ?> 
            <em class="comment-awaiting-moderation"><?php _e('Your comment is awaiting moderation.', 'acmephoto'); ?></em> 
            <br/> 
        <?php endif; ?> 
        <div class="comment-meta commentmetadata"> 
            <a href="<?php echo get_comment_link($comment->comment_ID); ?>"> 
                <i class="fa fa-clock-o"></i> 
                <?php 
                /* translators: 1: date, 2: time */ 
                printf(__('%1$s at %2$s', 'acmephoto'), get_comment_date(), get_comment_time()); ?> 
            </a> 
            <?php edit_comment_link(__('(Edit)', 'acmephoto'), '  ', ''); ?> 
        </div> 
        <?php comment_text(); ?> 
        <div class="reply"> 
            <?php comment_reply_link( array_merge($args, array('add_below' => $add_below, 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?> 
        </div> 
        <?php if ('div' != $args['style']) : ?> 
            </div> 
        <?php endif; ?> 
        <?php 
    } 
endif; 
 
/** 
 * Select sidebar according to the options saved 
 * 
 * @since AcmePhoto 1.0.0 
 * 
 * @param null 
 * @return string 
 * 
 */ 
if ( !function_exists('acmephoto_sidebar_selection') ) : 
    function acmephoto_sidebar_selection( ) { 
        global $acmephoto_customizer_all_values; 
        $acmephotobody_global_class = 'no-sidebar'; 
        if( is_single() || is_page() ){ 
            if( 
                'left-sidebar' == $acmephoto_customizer_all_values['acmephoto-single-sidebar-layout'] || 
                'no-sidebar' == $acmephoto_customizer_all_values['acmephoto-single-sidebar-layout'] 
            ){ 
                $acmephotobody_global_class = $acmephoto_customizer_all_values['acmephoto-single-sidebar-layout']; 
            } 
            else{ 
                $acmephotobody_global_class= 'right-sidebar'; 
            } 
        } 
 
        return $acmephotobody_global_class; 
    } 
endif; 
 
/** 
 * Return content of fixed lenth 
 * 
 * @since AcmePhoto 1.0.0 
 * 
 * @param string $acmephoto_content 
 * @param int $length 
 * @return string 
 * 
 */ 
if ( ! function_exists( 'acmephoto_words_count' ) ) : 
    function acmephoto_words_count( $acmephoto_content = null, $length = 16 ) { 
 
        $length = absint( $length ); 
        $source_content = preg_replace( '`\[[^\]]*\]`', '', $acmephoto_content ); 
        $trimmed_content = wp_trim_words( $source_content, $length, '...' ); 
        return $trimmed_content; 
 
    } 
endif; 
 
/** 
 * BreadCrumb Settings 
 */ 
if( ! function_exists( 'acmephoto_breadcrumbs' ) ): 
 
    function acmephoto_breadcrumbs() { 
 
        wp_reset_postdata(); 
        global $post; 
        $trans_here = ''; 
        $trans_home = __( 'Home', 'acmephoto' ); 
        $search_result_text = __( 'Search Results for ', 'acmephoto' ); 
 
        $showOnHome = 0; // 1 - show breadcrumbs on the homepage, 0 - don't show 
        $delimiter = ''; // delimiter between crumbs 
        $home = $trans_home; // text for the 'Home' link 
        $showHomeLink = 1; 
 
        $showCurrent = 1; // 1 - show current post/page title in breadcrumbs, 0 - don't show 
        $before = '<span class="current">'; // tag before the current crumb 
        $after = '</span>'; // tag after the current crumb 
 
        $homeLink = esc_url( home_url() ); 
 
        if (is_home() || is_front_page()) { 
 
            if ($showOnHome == 1) echo '<div id="acmephoto-breadcrumbs"><div class="breadcrumb-container"><a href="' . $homeLink . '">' . $home . '</a></div></div>'; 
 
        } else { 
            if($showHomeLink == 1){ 
                echo '<div id="acmephoto-breadcrumbs" class="breadcrumb clearfix"><span class="breadcrumb">'.esc_attr( $trans_here ).'</span><div class="breadcrumb-container"><a href="' . $homeLink . '">' . $home . '</a> ' . $delimiter . ' '; 
            } else { 
                echo '<div id="acmephoto-breadcrumbs" class="breadcrumb clearfix"><span class="breadcrumb">'.esc_attr( $trans_here ).'</span><div class="breadcrumb-container">' . $home . ' ' . $delimiter . ' '; 
            } 
 
            if ( is_category() ) { 
                $thisCat = get_category(get_query_var('cat'), false); 
                if ($thisCat->parent != 0) echo get_category_parents($thisCat->parent, TRUE, ' ' . $delimiter . ' '); 
                echo $before .  single_cat_title('', false) . $after; 
 
            } elseif ( is_search() ) { 
                echo $before . $search_result_text.' "' . get_search_query() . '"' . $after; 
 
            } elseif ( is_day() ) { 
                echo '<a href="' . esc_url( get_year_link(get_the_time('Y')) ) . '">' . get_the_time('Y') . '</a> ' . $delimiter . ' '; 
                echo '<a href="' . esc_url_raw( get_month_link(get_the_time('Y'),get_the_time('m')) ). '">' . get_the_time('F') . '</a> ' . $delimiter . ' '; 
                echo $before . get_the_time('d') . $after; 
 
            } elseif ( is_month() ) { 
                echo '<a href="' . esc_url( get_year_link(get_the_time('Y')) ) . '">' . get_the_time('Y') . '</a> ' . $delimiter . ' '; 
                echo $before . get_the_time('F') . $after; 
 
            } elseif ( is_year() ) { 
                echo $before . get_the_time('Y') . $after; 
 
            } elseif ( is_single() && !is_attachment() ) { 
                if ( get_post_type() != 'post' ) { 
                    $post_type = get_post_type_object(get_post_type()); 
                    $slug = $post_type->rewrite; 
                    echo '<a href="' . $homeLink . '/' . $slug['slug'] . '/">' . $post_type->labels->singular_name . '</a>'; 
                    if ($showCurrent == 1) echo ' ' . $delimiter . ' ' . $before . get_the_title() . $after; 
                } else { 
                    $cat = get_the_category(); 
                    if( !empty( $cat ) ){ 
                        $cat = $cat[0]; 
                        $cats = get_category_parents($cat, TRUE, ' ' . $delimiter . ' '); 
                        if ($showCurrent == 0) $cats = preg_replace("#^(.+)\s$delimiter\s$#", "$1", $cats); 
                        echo $cats; 
                    } 
 
                    if ($showCurrent == 1) echo $before . get_the_title() . $after; 
                } 
 
            } elseif ( !is_single() && !is_page() && get_post_type() != 'post' && !is_404() ) { 
                $post_type = get_post_type_object(get_post_type()); 
                echo $before . $post_type->labels->singular_name . $after; 
 
            } elseif ( is_attachment() ) { 
                $parent = get_post($post->post_parent); 
                $cat = get_the_category($parent->ID); 
                if( !empty( $cat ) ){ 
                    $cat = $cat[0]; 
                    echo get_category_parents($cat, TRUE, ' ' . $delimiter . ' '); 
                } 
                echo '<a href="' . esc_url( get_permalink( $parent ) ) . '">' . $parent->post_title . '</a>'; 
                if ($showCurrent == 1) echo ' ' . $delimiter . ' ' . $before . get_the_title() . $after; 
 
            } elseif ( is_page() && !$post->post_parent ) { 
                if ($showCurrent == 1) echo $before . get_the_title() . $after; 
 
            } elseif ( is_page() && $post->post_parent ) { 
                $parent_id  = $post->post_parent; 
                $breadcrumbs = array(); 
                while ($parent_id) { 
                    $page = get_post($parent_id); 
                    $breadcrumbs[] = '<a href="' . esc_url( get_permalink( $page->ID ) ) . '">' . get_the_title($page->ID) . '</a>'; 
                    $parent_id  = $page->post_parent; 
                } 
                $breadcrumbs = array_reverse($breadcrumbs); 
                for ($i = 0; $i < count($breadcrumbs); $i++) { 
                    echo $breadcrumbs[$i]; 
                    if ($i != count($breadcrumbs)-1) echo ' ' . $delimiter . ' '; 
                } 
                if ($showCurrent == 1) echo ' ' . $delimiter . ' ' . $before . get_the_title() . $after; 
 
            } elseif ( is_tag() ) { 
                echo $before . __('Posts tagged : ','acmephoto' ) . single_tag_title('', false) . '"' . $after; 
 
            } elseif ( is_author() ) { 
                global $author; 
                $userdata = get_userdata($author); 
                echo $before . __('Author: ', 'acmephoto' ) . $userdata->display_name . $after; 
 
            } elseif ( is_404() ) { 
                echo $before . __( 'Error 404', 'acmephoto' ) . $after; 
            } 
            else { 
                /*nothing to do*/ 
            } 
            if ( get_query_var('paged') ) { 
                if ( is_category() || is_day() || is_month() || is_year() || is_search() || is_tag() || is_author() ) echo ' ('; 
                echo __('Page' , 'acmephoto') . ' ' . get_query_var('paged'); 
                if ( is_category() || is_day() || is_month() || is_year() || is_search() || is_tag() || is_author() ) echo ')'; 
            } 
            echo '</div></div>'; 
        } 
    } 
endif; ?>

Did this file decode correctly?

Original Code

<?php
/**
 * Callback functions for comments
 *
 * @since AcmePhoto 1.0.0
 *
 * @param $comment
 * @param $args
 * @param $depth
 * @return void
 *
 */
if ( !function_exists('acmephoto_commment_list') ) :

    function acmephoto_commment_list($comment, $args, $depth) {
        $GLOBALS['comment'] = $comment;
        extract($args, EXTR_SKIP);
        if ('div' == $args['style']) {
            $tag = 'div';
            $add_below = 'comment';
        }
        else {
            $tag = 'li';
            $add_below = 'div-comment';
        }
        ?>
        <<?php echo $tag ?>
        <?php comment_class(empty($args['has_children']) ? '' : 'parent') ?> id="comment-<?php comment_ID() ?>">
        <?php if ('div' != $args['style']) : ?>
            <div id="div-comment-<?php comment_ID() ?>" class="comment-body clearfix">
        <?php endif; ?>
        <div class="comment-author vcard">
            <?php if ($args['avatar_size'] != 0) echo get_avatar($comment, '64'); ?>
            <?php printf(__('<cite class="fn">%s</cite>', 'acmephoto' ), get_comment_author_link()); ?>
        </div>
        <?php if ($comment->comment_approved == '0') : ?>
            <em class="comment-awaiting-moderation"><?php _e('Your comment is awaiting moderation.', 'acmephoto'); ?></em>
            <br/>
        <?php endif; ?>
        <div class="comment-meta commentmetadata">
            <a href="<?php echo get_comment_link($comment->comment_ID); ?>">
                <i class="fa fa-clock-o"></i>
                <?php
                /* translators: 1: date, 2: time */
                printf(__('%1$s at %2$s', 'acmephoto'), get_comment_date(), get_comment_time()); ?>
            </a>
            <?php edit_comment_link(__('(Edit)', 'acmephoto'), '  ', ''); ?>
        </div>
        <?php comment_text(); ?>
        <div class="reply">
            <?php comment_reply_link( array_merge($args, array('add_below' => $add_below, 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
        </div>
        <?php if ('div' != $args['style']) : ?>
            </div>
        <?php endif; ?>
        <?php
    }
endif;

/**
 * Select sidebar according to the options saved
 *
 * @since AcmePhoto 1.0.0
 *
 * @param null
 * @return string
 *
 */
if ( !function_exists('acmephoto_sidebar_selection') ) :
    function acmephoto_sidebar_selection( ) {
        global $acmephoto_customizer_all_values;
        $acmephotobody_global_class = 'no-sidebar';
        if( is_single() || is_page() ){
            if(
                'left-sidebar' == $acmephoto_customizer_all_values['acmephoto-single-sidebar-layout'] ||
                'no-sidebar' == $acmephoto_customizer_all_values['acmephoto-single-sidebar-layout']
            ){
                $acmephotobody_global_class = $acmephoto_customizer_all_values['acmephoto-single-sidebar-layout'];
            }
            else{
                $acmephotobody_global_class= 'right-sidebar';
            }
        }

        return $acmephotobody_global_class;
    }
endif;

/**
 * Return content of fixed lenth
 *
 * @since AcmePhoto 1.0.0
 *
 * @param string $acmephoto_content
 * @param int $length
 * @return string
 *
 */
if ( ! function_exists( 'acmephoto_words_count' ) ) :
    function acmephoto_words_count( $acmephoto_content = null, $length = 16 ) {

        $length = absint( $length );
        $source_content = preg_replace( '`\[[^\]]*\]`', '', $acmephoto_content );
        $trimmed_content = wp_trim_words( $source_content, $length, '...' );
        return $trimmed_content;

    }
endif;

/**
 * BreadCrumb Settings
 */
if( ! function_exists( 'acmephoto_breadcrumbs' ) ):

    function acmephoto_breadcrumbs() {

        wp_reset_postdata();
        global $post;
        $trans_here = '';
        $trans_home = __( 'Home', 'acmephoto' );
        $search_result_text = __( 'Search Results for ', 'acmephoto' );

        $showOnHome = 0; // 1 - show breadcrumbs on the homepage, 0 - don't show
        $delimiter = ''; // delimiter between crumbs
        $home = $trans_home; // text for the 'Home' link
        $showHomeLink = 1;

        $showCurrent = 1; // 1 - show current post/page title in breadcrumbs, 0 - don't show
        $before = '<span class="current">'; // tag before the current crumb
        $after = '</span>'; // tag after the current crumb

        $homeLink = esc_url( home_url() );

        if (is_home() || is_front_page()) {

            if ($showOnHome == 1) echo '<div id="acmephoto-breadcrumbs"><div class="breadcrumb-container"><a href="' . $homeLink . '">' . $home . '</a></div></div>';

        } else {
            if($showHomeLink == 1){
                echo '<div id="acmephoto-breadcrumbs" class="breadcrumb clearfix"><span class="breadcrumb">'.esc_attr( $trans_here ).'</span><div class="breadcrumb-container"><a href="' . $homeLink . '">' . $home . '</a> ' . $delimiter . ' ';
            } else {
                echo '<div id="acmephoto-breadcrumbs" class="breadcrumb clearfix"><span class="breadcrumb">'.esc_attr( $trans_here ).'</span><div class="breadcrumb-container">' . $home . ' ' . $delimiter . ' ';
            }

            if ( is_category() ) {
                $thisCat = get_category(get_query_var('cat'), false);
                if ($thisCat->parent != 0) echo get_category_parents($thisCat->parent, TRUE, ' ' . $delimiter . ' ');
                echo $before .  single_cat_title('', false) . $after;

            } elseif ( is_search() ) {
                echo $before . $search_result_text.' "' . get_search_query() . '"' . $after;

            } elseif ( is_day() ) {
                echo '<a href="' . esc_url( get_year_link(get_the_time('Y')) ) . '">' . get_the_time('Y') . '</a> ' . $delimiter . ' ';
                echo '<a href="' . esc_url_raw( get_month_link(get_the_time('Y'),get_the_time('m')) ). '">' . get_the_time('F') . '</a> ' . $delimiter . ' ';
                echo $before . get_the_time('d') . $after;

            } elseif ( is_month() ) {
                echo '<a href="' . esc_url( get_year_link(get_the_time('Y')) ) . '">' . get_the_time('Y') . '</a> ' . $delimiter . ' ';
                echo $before . get_the_time('F') . $after;

            } elseif ( is_year() ) {
                echo $before . get_the_time('Y') . $after;

            } elseif ( is_single() && !is_attachment() ) {
                if ( get_post_type() != 'post' ) {
                    $post_type = get_post_type_object(get_post_type());
                    $slug = $post_type->rewrite;
                    echo '<a href="' . $homeLink . '/' . $slug['slug'] . '/">' . $post_type->labels->singular_name . '</a>';
                    if ($showCurrent == 1) echo ' ' . $delimiter . ' ' . $before . get_the_title() . $after;
                } else {
                    $cat = get_the_category();
                    if( !empty( $cat ) ){
                        $cat = $cat[0];
                        $cats = get_category_parents($cat, TRUE, ' ' . $delimiter . ' ');
                        if ($showCurrent == 0) $cats = preg_replace("#^(.+)\s$delimiter\s$#", "$1", $cats);
                        echo $cats;
                    }

                    if ($showCurrent == 1) echo $before . get_the_title() . $after;
                }

            } elseif ( !is_single() && !is_page() && get_post_type() != 'post' && !is_404() ) {
                $post_type = get_post_type_object(get_post_type());
                echo $before . $post_type->labels->singular_name . $after;

            } elseif ( is_attachment() ) {
                $parent = get_post($post->post_parent);
                $cat = get_the_category($parent->ID);
                if( !empty( $cat ) ){
                    $cat = $cat[0];
                    echo get_category_parents($cat, TRUE, ' ' . $delimiter . ' ');
                }
                echo '<a href="' . esc_url( get_permalink( $parent ) ) . '">' . $parent->post_title . '</a>';
                if ($showCurrent == 1) echo ' ' . $delimiter . ' ' . $before . get_the_title() . $after;

            } elseif ( is_page() && !$post->post_parent ) {
                if ($showCurrent == 1) echo $before . get_the_title() . $after;

            } elseif ( is_page() && $post->post_parent ) {
                $parent_id  = $post->post_parent;
                $breadcrumbs = array();
                while ($parent_id) {
                    $page = get_post($parent_id);
                    $breadcrumbs[] = '<a href="' . esc_url( get_permalink( $page->ID ) ) . '">' . get_the_title($page->ID) . '</a>';
                    $parent_id  = $page->post_parent;
                }
                $breadcrumbs = array_reverse($breadcrumbs);
                for ($i = 0; $i < count($breadcrumbs); $i++) {
                    echo $breadcrumbs[$i];
                    if ($i != count($breadcrumbs)-1) echo ' ' . $delimiter . ' ';
                }
                if ($showCurrent == 1) echo ' ' . $delimiter . ' ' . $before . get_the_title() . $after;

            } elseif ( is_tag() ) {
                echo $before . __('Posts tagged : ','acmephoto' ) . single_tag_title('', false) . '"' . $after;

            } elseif ( is_author() ) {
                global $author;
                $userdata = get_userdata($author);
                echo $before . __('Author: ', 'acmephoto' ) . $userdata->display_name . $after;

            } elseif ( is_404() ) {
                echo $before . __( 'Error 404', 'acmephoto' ) . $after;
            }
            else {
                /*nothing to do*/
            }
            if ( get_query_var('paged') ) {
                if ( is_category() || is_day() || is_month() || is_year() || is_search() || is_tag() || is_author() ) echo ' (';
                echo __('Page' , 'acmephoto') . ' ' . get_query_var('paged');
                if ( is_category() || is_day() || is_month() || is_year() || is_search() || is_tag() || is_author() ) echo ')';
            }
            echo '</div></div>';
        }
    }
endif;

Function Calls

function_exists 4

Variables

None

Stats

MD5 5f88ad19d454834a4fd218685105a1bd
Eval Count 0
Decode Time 154 ms