is_author() && isset( $wp_query->post ) ) { $GLOBALS['authordata'] = get_userdata( $wp_query->post->post_author ); } } add_action( 'wp', 'accesspress_parallax_setup_author' ); //bxSlider Callback for do action function accesspress_parallax_bxslidercb(){ global $post; $accesspress_parallax = of_get_option('parallax_section'); if(!empty($accesspress_parallax)) : $accesspress_parallax_first_page_array = array_slice($accesspress_parallax, 0, 1); $accesspress_parallax_first_page = $accesspress_parallax_first_page_array[0]['page']; endif; $accesspress_slider_category = of_get_option('slider_category'); $accesspress_slider_full_window = of_get_option('slider_full_window') ; $accesspress_show_slider = of_get_option('show_slider') ; $accesspress_show_pager = (!of_get_option('show_pager') || of_get_option('show_pager') == "yes") ? "true" : "false"; $accesspress_show_controls = (!of_get_option('show_controls') || of_get_option('show_controls') == "yes") ? "true" : "false"; $accesspress_auto_transition = (!of_get_option('auto_transition') || of_get_option('auto_transition') == "yes") ? "true" : "false"; $accesspress_slider_transition = (!of_get_option('slider_transition')) ? "fade" : of_get_option('slider_transition'); $accesspress_slider_speed = (!of_get_option('slider_speed')) ? "5000" : of_get_option('slider_speed'); $accesspress_slider_pause = (!of_get_option('slider_pause')) ? "5000" : of_get_option('slider_pause'); $accesspress_show_caption = of_get_option('show_caption') ; $accesspress_enable_parallax = of_get_option('enable_parallax'); ?>
$accesspress_slider_category, 'posts_per_page' => -1 )); if($loop->have_posts()) : ?>
have_posts()) : $loop-> the_post(); $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'full', false ); $image_url = ""; if($accesspress_slider_full_window == "yes") : $image_url = "style = 'background-image:url(".esc_url($image[0]).");'"; endif; ?>
>

slider1

slider2

\n"; echo "\n"; echo "\n"; } add_action('wp_head','accesspress_header_styles_scripts'); function accesspress_footer_count(){ $count = 0; if(is_active_sidebar('footer-1')) $count++; if(is_active_sidebar('footer-2')) $count++; if(is_active_sidebar('footer-3')) $count++; if(is_active_sidebar('footer-4')) $count++; return $count; } function accesspress_social_cb(){ $facebooklink = of_get_option('facebook'); $twitterlink = of_get_option('twitter'); $google_pluslink = of_get_option('google_plus'); $youtubelink = of_get_option('youtube'); $pinterestlink = of_get_option('pinterest'); $linkedinlink = of_get_option('linkedin'); $flickrlink = of_get_option('flickr'); $vimeolink = of_get_option('vimeo'); $instagramlink = of_get_option('instagram'); $skypelink = of_get_option('skype'); ?>
" class="skype" data-title="Skype">
]*>#', '#$#' ), '', $menu ); } add_filter( 'wp_page_menu', 'accesspress_remove_page_menu_div' ); function accesspress_customize_excerpt_more( $more ) { return '...'; } add_filter('excerpt_more', 'accesspress_customize_excerpt_more'); function accesspress_word_count($string, $limit) { $words = explode(' ', $string); return implode(' ', array_slice($words, 0, $limit)); } function accesspress_letter_count($content, $limit) { $striped_content = strip_tags($content); $striped_content = strip_shortcodes($striped_content); $limit_content = mb_substr($striped_content, 0 , $limit ); if( strlen($limit_content) < strlen($content) ){ $limit_content .= "..."; } return $limit_content; } function accesspress_register_string(){ if(function_exists('pll_register_string')){ $home_text = of_get_option('home_text'); pll_register_string('Menu: Home Text', $home_text ,'Theme Option Text'); } } add_action('after_setup_theme','accesspress_register_string'); add_action( 'tgmpa_register', 'accesspress_parallax_register_plugins' ); /** * Register the required plugins for this theme. * * In this example, we register five plugins: * - one included with the TGMPA library * - two from an external source, one from an arbitrary source, one from a GitHub repository * - two from the .org repo, where one demonstrates the use of the `is_callable` argument * * The variables passed to the `tgmpa()` function should be: * - an array of plugin arrays; * - optionally a configuration array. * If you are not changing anything in the configuration array, you can remove the array and remove the * variable from the function call: `tgmpa( $plugins );`. * In that case, the TGMPA default settings will be used. * * This function is hooked into `tgmpa_register`, which is fired on the WP `init` action on priority 10. */ function accesspress_parallax_register_plugins() { /* * Array of plugin arrays. Required keys are name and slug. * If the source is NOT from the .org repo, then source is also required. */ $plugins = array( array( 'name' => __( 'AccessPress Social Icons', 'accesspress-parallax' ), //The plugin name 'slug' => 'accesspress-social-icons', // The plugin slug (typically the folder name) 'required' => false, // If false, the plugin is only 'recommended' instead of required. 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch. 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins. ), array( 'name' => __( 'AccessPress Social Counter', 'accesspress-parallax' ), //The plugin name 'slug' => 'accesspress-social-counter', // The plugin slug (typically the folder name) 'required' => false, // If false, the plugin is only 'recommended' instead of required. 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch. 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins. ), array( 'name' => __( 'AccessPress Social Share', 'accesspress-parallax' ), //The plugin name 'slug' => 'accesspress-social-share', // The plugin slug (typically the folder name) 'required' => false, // If false, the plugin is only 'recommended' instead of required. 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch. 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins. ), array( 'name' => 'Ultimate Form Builder Lite', 'slug' => 'ultimate-form-builder-lite', 'required' => false, 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch. 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins. ), array( 'name' => 'AccessPress Twitter Feed', 'slug' => 'accesspress-twitter-feed', 'required' => false, 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch. 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins. ), ); /* * Array of configuration settings. Amend each line as needed. * * TGMPA will start providing localized text strings soon. If you already have translations of our standard * strings available, please help us make TGMPA even better by giving us access to these translations or by * sending in a pull-request with .po file(s) with the translations. * * Only uncomment the strings in the config array if you want to customize the strings. */ $config = array( 'id' => 'accesspress-parallax', // Unique ID for hashing notices for multiple instances of TGMPA. 'default_path' => '', // Default absolute path to bundled plugins. 'menu' => 'accesspress-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. ); tgmpa( $plugins, $config ); }