WPBakery Shortcode for the Post Excerpt with Limited Characters [vc_post_excerpt]

// WPBakery shortcode for the post excerpt with limited characters function vc_gitem_template_attribute_post_excerpt_with_link($value, $data) { extract(array_merge(array( ‘post’ => null, ‘data’ => ”, ), $data)); $excerpt = substr($post->post_content, 0, 150) . ‘…’; return ‘ ‘ . $excerpt . ‘ ‘; } add_filter(‘vc_gitem_template_attribute_vc_post_excerpt’,…Continue reading

Post reading time shortcode

function reading_time() { if ( empty( $post ) && isset( $GLOBALS[‘post’] ) ) { $post = $GLOBALS[‘post’]; $content = get_post_field( ‘post_content’, $post->ID ); $word_count = str_word_count( strip_tags( $content ) ); $readingtime = ceil($word_count / 260); if ($readingtime == 1) {…Continue reading

Shortcode in Nav Menu, Widgets, Sidebar

/** * Enable shortcodes for menu navigation. */ if ( ! has_filter( ‘wp_nav_menu’, ‘do_shortcode’ ) ) { add_filter( ‘wp_nav_menu’, ‘shortcode_unautop’ ); add_filter( ‘wp_nav_menu’, ‘do_shortcode’, 11 ); } /** * Enable shortcodes for widgets (footer, sidebar…). */ if ( ! has_filter(…Continue reading