Help with Changing loop.php?

<?php if( is_archive() && is_category() && !is_tag() && !is_search() ): ?>

    <!-- BEGIN .archive-title -->
    <h1 class="page-title">

        <?php if ( is_day() ): ?>
                <?php printf( __( 'Daily Archives: %s' ), get_the_date() ); ?>
            <?php elseif ( is_month() ): ?>
                <?php printf( __( 'Monthly Archives: %s' ), get_the_date( 'F Y' ) ); ?>
            <?php elseif ( is_year() ): ?>
                <?php printf( __( 'Yearly Archives: %s' ), get_the_date( 'Y' ) ); ?>
            <?php elseif ( is_category(60) ): ?>
                <?php _e( 'Photos' ); ?>
            <?php else : ?>
                <?php _e( 'Blog Archives' ); ?>
        <?php endif; ?>

    <!-- END .archive-title -->
    </h1>

<?php endif; ?>