| 12345678910111213141516171819202122232425 |
- <?php
- /**
- * Post (in loop) actions - inner part
- *
- * @package vamtam/consulting
- */
- if ( ! (
- ( is_single() && current_user_can( 'edit_post', get_the_ID() ) ) ||
- ( rd_vamtam_get_optionb( 'post-meta', 'comments' ) && comments_open() ) ||
- is_customize_preview()
- )
- )
- return;
- ?>
- <div class="post-actions">
- <?php if ( ! post_password_required() ) : ?>
- <?php get_template_part( 'templates/post/meta/comments' ); ?>
- <?php if ( ! is_single() ) : ?>
- <?php edit_post_link( '<span class="icon">' . vamtam_get_icon( 'pencil' ) . '</span><span class="visuallyhidden">' . esc_html__( 'Edit', 'vamtam-consulting' ) . '</span>' ) ?>
- <?php endif ?>
- <?php endif ?>
- </div>
|