PATH:
home
/
thebhoeo
/
.trash
/
woodmart
/
inc
/
modules
/
layouts
/
wpb
/
shortcodes
/
single-post
<?php /** * Post comments button shortcode. * * @package Woodmart */ use XTS\Modules\Layouts\Main; if ( ! defined( 'ABSPATH' ) ) { exit; // Direct access not allowed. } if ( ! function_exists( 'woodmart_shortcode_single_post_comments_button' ) ) { /** * Post comments button shortcode. * * @param array $settings Shortcode settings. * @return string Shortcode HTML output. */ function woodmart_shortcode_single_post_comments_button( $settings ) { $default_settings = array( 'css' => '', 'alignment' => 'left', ); $settings = wp_parse_args( $settings, $default_settings ); $wrapper_classes = apply_filters( 'vc_shortcodes_css_class', '', '', $settings ); $wrapper_classes .= ' text-' . woodmart_vc_get_control_data( $settings['alignment'], 'desktop' ); if ( $settings['css'] ) { $wrapper_classes .= ' ' . vc_shortcode_custom_css_class( $settings['css'] ); } ob_start(); Main::setup_preview(); if ( comments_open() || pings_open() ) { woodmart_enqueue_inline_style( 'blog-mod-comments-button' ); echo '<div class="wd-wpb wd-single-post-reply' . esc_attr( $wrapper_classes ) . '">'; echo '<div class="wd-post-reply wd-style-1">'; woodmart_post_meta_reply(); echo '</div>'; echo '</div>'; } Main::restore_preview(); return ob_get_clean(); } }
[-] post-comments.php
[edit]
[-] post-author-meta.php
[edit]
[-] post-title.php
[edit]
[-] post-content.php
[edit]
[-] post-image.php
[edit]
[-] post-excerpt.php
[edit]
[-] post-comments-button.php
[edit]
[-] post-comment-form.php
[edit]
[-] post-categories.php
[edit]
[+]
..
[-] post-navigation.php
[edit]
[-] post-meta-value.php
[edit]
[-] post-date-meta.php
[edit]
[-] author-bio.php
[edit]
[-] post-tags.php
[edit]