', esc_url( get_bloginfo( 'pingback_url' ) ) ); } } add_action( 'wp_head', 'agency_plus_pingback_header' ); //============================================================= // Function to change default excerpt //============================================================= if ( ! function_exists( 'agency_plus_implement_excerpt_length' ) ) : /** * Implement excerpt length. * * @since 1.0.0 * * @param int $length The number of words. * @return int Excerpt length. */ function agency_plus_implement_excerpt_length( $length ) { $excerpt_length = agency_plus_get_option( 'excerpt_length' ); if ( absint( $excerpt_length ) > 0 ) { $length = absint( $excerpt_length ); } return $length; } endif; if ( ! function_exists( 'agency_plus_content_more_link' ) ) : /** * Implement read more in content. * * @since 1.0.0 * * @param string $more_link Read More link element. * @param string $more_link_text Read More text. * @return string Link. */ function agency_plus_content_more_link( $more_link, $more_link_text ) { $read_more_text = agency_plus_get_option( 'readmore_text' ); if ( ! empty( $read_more_text ) ) { $more_link = str_replace( $more_link_text, esc_html( $read_more_text ), $more_link ); } return $more_link; } endif; if ( ! function_exists( 'agency_plus_implement_read_more' ) ) : /** * Implement read more in excerpt. * * @since 1.0.0 * * @param string $more The string shown within the more link. * @return string The excerpt. */ function agency_plus_implement_read_more( $more ) { $output = $more; $read_more_text = agency_plus_get_option( 'readmore_text' ); if ( ! empty( $read_more_text ) ) { $output = '…

' . esc_html( $read_more_text ) . '

'; } return $output; } endif; if ( ! function_exists( 'agency_plus_hook_read_more_filters' ) ) : /** * Hook read more and excerpt length filters. * * @since 1.0.0 */ function agency_plus_hook_read_more_filters() { add_filter( 'excerpt_length', 'agency_plus_implement_excerpt_length', 999 ); add_filter( 'the_content_more_link', 'agency_plus_content_more_link', 10, 2 ); add_filter( 'excerpt_more', 'agency_plus_implement_read_more' ); } endif; add_action( 'wp', 'agency_plus_hook_read_more_filters' ); if ( ! function_exists( 'wp_body_open' ) ) { /** * Body open hook. */ function wp_body_open() { do_action( 'wp_body_open' ); } } //============================================================= // Function to include recommended plugins //============================================================= function agency_plus_register_required_plugins() { $plugins = array( array( 'name' => esc_html__( 'Elementor Page Builder', 'agency-plus' ), 'slug' => 'elementor', 'required' => false, ), array( 'name' => esc_html__( 'Post Grid Elementor Addon', 'agency-plus' ), 'slug' => 'post-grid-elementor-addon', 'required' => false, ), /*array( 'name' => esc_html__( 'Instagram Feed For Elementor', 'agency-plus' ), 'slug' => 'ifeed-for-elementor', 'required' => false, ),*/ ); tgmpa( $plugins ); } add_action( 'tgmpa_register', 'agency_plus_register_required_plugins' );