post_content ) { // Get the absurd shortcode regexp. $video_regex = '#' . get_shortcode_regex() . '#i'; $pattern_array = array( $video_regex ); // Get the patterns from the embed object. if ( ! function_exists( '_wp_oembed_get_object' ) ) { include ABSPATH . WPINC . '/class-oembed.php'; } $oembed = _wp_oembed_get_object(); $pattern_array = array_merge( $pattern_array, array_keys( $oembed->providers ) ); // Or all the patterns together. $pattern = '#(' . array_reduce( $pattern_array, function ( $carry, $item ) { if ( strpos( $item, '#' ) === 0 ) { // Assuming '#...#i' regexps. $item = substr( $item, 1, -2 ); } else { // Assuming glob patterns. $item = str_replace( '*', '(.+)', $item ); } return $carry ? $carry . ')|(' . $item : $item; } ) . ')#is'; // Simplistic parse of content line by line. $lines = explode( "\n", $post->post_content ); foreach ( $lines as $line ) { $line = trim( $line ); if ( preg_match( $pattern, $line, $matches ) ) { if ( strpos( $matches[0], '[' ) === 0 ) { $ret = do_shortcode( $matches[0] ); $audio = split('"', $matches[0]); if( array_key_exists(1, $audio)){ return $audio[1]; } } else { $ret = wp_oembed_get( $matches[0] ); } return $ret; } } } } function travel_notes_author_excerpt() { $text_limit = '50'; //Words to show in author bio excerpt $read_more = "Read more"; //Read more text $end_of_txt = "..."; $name_of_author = get_the_author(); $url_of_author = get_author_posts_url(get_the_author_meta('ID')); $short_desc_author = wp_trim_words(strip_tags( get_the_author_meta('description')), $text_limit, $end_of_txt.'
'.$read_more .''); return $short_desc_author; } function travel_notes_catch_that_image() { global $post; $pattern = '||'; $transformed_content = apply_filters('the_content',$post->post_content); preg_match($pattern,$transformed_content,$matches); if (!empty($matches[1])) { $classes = explode(' ',$matches[1]); $id = preg_grep('|^wp-image-.*|',$classes); if (!empty($id)) { $id = str_replace('wp-image-','',$id); if (!empty($id)) { $id = reset($id); $transformed_content = wp_get_attachment_image($id,'full'); return $transformed_content; } } } } function travel_notes_catch_that_image_thumb() { global $post; $pattern = '||'; $transformed_content = apply_filters('the_content',$post->post_content); preg_match($pattern,$transformed_content,$matches); if (!empty($matches[1])) { $classes = explode(' ',$matches[1]); $id = preg_grep('|^wp-image-.*|',$classes); if (!empty($id)) { $id = str_replace('wp-image-','',$id); if (!empty($id)) { $id = reset($id); $transformed_content = wp_get_attachment_url($id,'full'); return $transformed_content; } } } } function travel_notes_catch_gallery_image_full() { global $post; $gallery = get_post_gallery( $post, false ); if ( !empty($gallery['ids']) ) { $ids = explode( ",", $gallery['ids'] ); $total_images = 0; foreach( $ids as $id ) { $link = wp_get_attachment_url( $id ); $total_images++; if ($total_images == 1) { $first_img = $link; return $first_img; } } } } function travel_notes_catch_gallery_image_thumb() { global $post; $gallery = get_post_gallery( $post, false ); if ( !empty($gallery['ids']) ) { $ids = explode( ",", $gallery['ids'] ); $total_images = 0; foreach( $ids as $id ) { $title = get_post_field('post_title', $id); $meta = get_post_field('post_excerpt', $id); $link = wp_get_attachment_url( $id ); $image = wp_get_attachment_image( $id, 'thumbnail'); $total_images++; if ($total_images == 1) { $first_img = $image; return $first_img; } } } } /* social icons*/ function travel_notes_social_icons() { $social_networks = array( array( 'name' => __('Facebook','travel-notes'), 'theme_mode' => 'travel_notes_facebook','icon' => 'fa-facebook' ), array( 'name' => __('Twitter','travel-notes'), 'theme_mode' => 'travel_notes_twitter','icon' => 'fa-twitter' ), array( 'name' => __('Google+','travel-notes'), 'theme_mode' => 'travel_notes_google','icon' => 'fa-google-plus' ), array( 'name' => __('Pinterest','travel-notes'), 'theme_mode' => 'travel_notes_pinterest','icon' => 'fa-pinterest' ), array( 'name' => __('Linkedin','travel-notes'), 'theme_mode' => 'travel_notes_linkedin','icon' => 'fa-linkedin' ), array( 'name' => __('Youtube','travel-notes'), 'theme_mode' => 'travel_notes_youtube','icon' => 'fa-youtube' ), array( 'name' => __('Tumblr','travel-notes'), 'theme_mode' => 'travel_notes_tumblr','icon' => 'fa-tumblr' ), array( 'name' => __('Instagram','travel-notes'), 'theme_mode' => 'travel_notes_instagram','icon' => 'fa-instagram' ), array( 'name' => __('Flickr','travel-notes'), 'theme_mode' => 'travel_notes_flickr','icon' => 'fa-flickr' ), array( 'name' => __('Vimeo','travel-notes'), 'theme_mode' => 'travel_notes_vimeo','icon' => 'fa-vimeo-square' ), array( 'name' => __('RSS','travel-notes'), 'theme_mode' => 'travel_notes_rss','icon' => 'fa-rss' ) ); for ($row = 0; $row < 11; $row++) { if (get_theme_mod( $social_networks[$row]["theme_mode"])): ?> 'category', 'hide_empty' => false, 'include' => get_theme_mod( 'travel_notes_custom_categories' ) ) ); ?> 'publish','post__in' => get_option("sticky_posts")); $fPosts = new WP_Query( $args ); if( $fPosts -> have_posts() ): ?>
__('WP Geo','travel-notes'), 'slug' => 'wp-geo', 'required' => false, ), array( 'name' => __('Instagram Feed','travel-notes'), 'slug' => 'instagram-feed', 'required' => false, ), array( 'name' => __('Categories Images','travel-notes'), 'slug' => 'categories-images', 'required' => false, ), array( 'name' => __('Responsive Lightbox by dFactory','travel-notes'), 'slug' => 'responsive-lightbox', 'required' => false, ), ); /** * Array of configuration settings. Amend each line as needed. * If you want the default strings to be available under your own theme domain, * leave the strings uncommented. * Some of the strings are added into a sprintf, so see the comments at the * end of each line for what each argument will be. */ $config = array( 'default_path' => '', // Default absolute path to pre-packaged plugins. 'menu' => 'travel_notes-install-plugins', // Menu slug. 'has_notices' => true, // Show admin notices or not. 'dismissable' => true, // If false, a user cannot dismiss the nag message. 'dismiss_msg' => '', // If 'dismissable' is false, this message will be output at top of nag. 'is_automatic' => false, // Automatically activate plugins after installation or not. 'message' => '', // Message to output right before the plugins table. 'strings' => array( 'page_title' => __( 'Install Required Plugins', 'travel-notes' ), 'menu_title' => __( 'Install Plugins', 'travel-notes' ), 'installing' => __( 'Installing Plugin: %s', 'travel-notes' ), // %s = plugin name. 'oops' => __( 'Something went wrong with the plugin API.', 'travel-notes' ), 'notice_can_install_required' => _n_noop( 'This theme requires the following plugin: %1$s.', 'This theme requires the following plugins: %1$s.' , 'travel-notes'), // %1$s = plugin name(s). 'notice_can_install_recommended' => _n_noop( 'This theme recommends the following plugin: %1$s.', 'This theme recommends the following plugins: %1$s.' , 'travel-notes'), // %1$s = plugin name(s). 'notice_cannot_install' => _n_noop( 'Sorry, but you do not have the correct permissions to install the %s plugin. Contact the administrator of this site for help on getting the plugin installed.', 'Sorry, but you do not have the correct permissions to install the %s plugins. Contact the administrator of this site for help on getting the plugins installed.' , 'travel-notes'), // %1$s = plugin name(s). 'notice_can_activate_required' => _n_noop( 'The following required plugin is currently inactive: %1$s.', 'The following required plugins are currently inactive: %1$s.' , 'travel-notes'), // %1$s = plugin name(s). 'notice_can_activate_recommended' => _n_noop( 'The following recommended plugin is currently inactive: %1$s.', 'The following recommended plugins are currently inactive: %1$s.' , 'travel-notes'), // %1$s = plugin name(s). 'notice_cannot_activate' => _n_noop( 'Sorry, but you do not have the correct permissions to activate the %s plugin. Contact the administrator of this site for help on getting the plugin activated.', 'Sorry, but you do not have the correct permissions to activate the %s plugins. Contact the administrator of this site for help on getting the plugins activated.' , 'travel-notes'), // %1$s = plugin name(s). 'notice_ask_to_update' => _n_noop( 'The following plugin needs to be updated to its latest version to ensure maximum compatibility with this theme: %1$s.', 'The following plugins need to be updated to their latest version to ensure maximum compatibility with this theme: %1$s.' , 'travel-notes'), // %1$s = plugin name(s). 'notice_cannot_update' => _n_noop( 'Sorry, but you do not have the correct permissions to update the %s plugin. Contact the administrator of this site for help on getting the plugin updated.', 'Sorry, but you do not have the correct permissions to update the %s plugins. Contact the administrator of this site for help on getting the plugins updated.' , 'travel-notes'), // %1$s = plugin name(s). 'install_link' => _n_noop( 'Begin installing plugin', 'Begin installing plugins' , 'travel-notes'), 'activate_link' => _n_noop( 'Begin activating plugin', 'Begin activating plugins' , 'travel-notes'), 'return' => __( 'Return to Required Plugins Installer', 'travel-notes' ), 'plugin_activated' => __( 'Plugin activated successfully.', 'travel-notes' ), 'complete' => __( 'All plugins installed and activated successfully. %s', 'travel-notes' ), // %s = dashboard link. 'nag_type' => 'updated' // Determines admin notice type - can only be 'updated', 'update-nag' or 'error'. ) ); tgmpa( $plugins, $config ); }