Advertisement
Guest User

Untitled

a guest
May 25th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. <?php $format = get_post_format(); ?>
  2. <?php if ( current_theme_supports( 'post-formats', $format ) ) : ?>
  3. <?php $formaticon = ''; ?>
  4. <?php if ( 'video' === $format ) { ?>
  5. <?php $formaticon = 'film'; ?>
  6. <?php } elseif ('gallery' === $format ) { ?>
  7. <?php $formaticon = 'picture'; ?>
  8. <?php } elseif ( 'audio' === $format ) { ?>
  9. <?php $formaticon = 'music'; ?>
  10. <?php } else { ?>
  11. <?php $formaticon = 'camera'; ?>
  12. <?php } ?>
  13. <div class="divina-format"><span class="glyphicon glyphicon-<?php echo esc_html( $formaticon ); ?>" aria-hidden="true"></span></div>
  14. <div class="divina-format-link">
  15. <a href="<?php echo esc_url( get_post_format_link( $format ) ); ?>"><span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span> <?php echo esc_html__( 'Публикации этой категории ', 'divina' ) . esc_html( $format ) . esc_html__( ' posts', 'divina' ); ?></a>
  16. </div><!-- .divina-format-link -->
  17. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement