- Timestamp:
- 05/07/2021 08:04:49 AM (5 years ago)
- Location:
- bard/1.8.9.4
- Files:
-
- 7 edited
- 1 copied
-
. (copied) (copied from bard/1.8.9.3)
-
functions.php (modified) (1 diff)
-
inc/customizer/css/customizer-ui.css (modified) (1 diff)
-
inc/customizer/customizer-defaults.php (modified) (1 diff)
-
inc/customizer/customizer.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
style.css (modified) (1 diff)
-
templates/header/featured-slider.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bard/1.8.9.4/functions.php
r141585 r147405 572 572 'cc-visa', 573 573 'goodreads', 574 'goodreads-g' 574 'goodreads-g', 575 'artstation', 576 'playstation', 577 'deviantart', 575 578 ); 576 579 -
bard/1.8.9.4/inc/customizer/css/customizer-ui.css
r140319 r147405 58 58 } 59 59 60 #customize-control- ashe_options-featured_links_label.tab-title,61 #customize-control- ashe_options-featured_slider_label.tab-title {60 #customize-control-bard_options-featured_links_label.tab-title, 61 #customize-control-bard_options-featured_slider_label.tab-title { 62 62 font-size: 12px !important; 63 63 } -
bard/1.8.9.4/inc/customizer/customizer-defaults.php
r140319 r147405 30 30 'main_nav_show_sidebar' => true, 31 31 'main_nav_merge_menu' => false, 32 'featured_slider_label' => false,32 'featured_slider_label' => true, 33 33 'featured_slider_display' => 'all', 34 34 'featured_slider_category' => 'null', 35 35 'featured_slider_amount' => '3', 36 36 'featured_slider_navigation' => 'on', 37 'featured_slider_exc_images' => false, 37 38 'featured_slider_pagination' => true, 38 39 'featured_links_label' => false, -
bard/1.8.9.4/inc/customizer/customizer.php
r141585 r147405 698 698 // Pagination 699 699 bard_checkbox_control( 'featured_slider', 'pagination', esc_html__( 'Show Pagination Dots', 'bard' ), 'refresh', 30 ); 700 701 // Exclude Images 702 bard_checkbox_control( 'featured_slider', 'exc_images', esc_html__( 'Exclude Slides without Images', 'bard' ), 'refresh', 35 ); 700 703 701 704 // Pro Version … … 935 938 'snapchat-square' => 'Snapchat 3', 936 939 'spotify' => 'Spotify', 940 'playstation' => 'Playstation', 941 'artstation' => 'Artstation', 942 'deviantart' => 'Deviantart', 937 943 'shopping-cart' => 'Cart', 938 944 'meetup' => 'Meetup', -
bard/1.8.9.4/readme.txt
r147302 r147405 4 4 Requires at least: WordPress 4.7+ 5 5 Tested up to: WordPress 5.7.1 6 Version: 1.8.9. 36 Version: 1.8.9.4 7 7 License: GPLv3 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.en.html -
bard/1.8.9.4/style.css
r147302 r147405 5 5 Author URI: http://wp-royal.com/ 6 6 Description: Personal and Multi-Author Beautiful Free WordPress Blog and Multipurpose Theme. Perfect for personal, lifestyle, health & fitness, food, cooking, bakery, travel, beauty, fashion, wedding, restaurant, recipe, church, photography, newspaper, quotes blog, auto blog, writer, publisher, editor, business and any other kind of amazing website. A minimal, elegant and mobile friendly layout will WOW and inspire your visitors. No matter whether you are a new blogger or you are very experienced in blogging, you will love the Bard theme. The theme is well documented and very easy to use, even for WordPress beginners. Customizable, clean and modern Responsive design will perfectly showcase your content on any device, even on tablet, mobile and retina displays. Very fast, compatible with many popular plugins, and of course, translation & RTL (right to left language) ready, coded with the best SEO practices, simple & lightweight, clear code, resulting in top rankings in google search results and higher speed scores, developers love it. The theme offers features like text & image logo, Fullscreen Slider, hero header, two blog styles: two columns grid (default style) and simple list style design, Instagram slider widget support (via Smash Balloon Social Photo Feed plugin), footer menu support, GDPR compatibility plugins support, popular podcast plugins support and many more. It also features left, right, footer and alternative sidebars areas to display your widgets. The theme is gutenberg ready and you can use gutenberg blocks to build any layout. Works perfectly with all major drag and drop page builders like Elementor, Beaver Builder, Visual Composer, SiteOrigin and Divi. Using the Bard theme and page builders, you can build amazing business or agency sites for your company. The theme can be used as one page website as well - simply make a page with Elementor or with another page builder and link the section ID to the menu items. With the Jetpack portfolio add-on you can make a portfolio site for your freelancer business to display your projects and theme fully compatible with it. Launch your own ecommerce store in minutes with Bard and Woocommerce! The theme fully supports WooCommerce shop (storefront) plugin. You can make site for a cafe, charity, clothing, dentist, grocery, yoga, hotel, hostel, furniture, jewelry, real estate, spa and many other options with Woo. You can sell any product, physical or digital (downloadable) goods, use subscriptions, make a site with memberships or bookings, sell services, add affiliate products, accept popular online payments for your estore like Stripe, PayPal, Square and many others. You have all power tools at the ready with Woo and the Bard theme to increase your sales.You just need to write and be awesome! TEMPLATE DEMO: http://wp-royal.com/themes/bard-free/demo/ 7 Version: 1.8.9. 37 Version: 1.8.9.4 8 8 Requires at least: 4.7 9 9 Requires PHP: 5.2.4 -
bard/1.8.9.4/templates/header/featured-slider.php
r140319 r147405 30 30 <?php 31 31 32 $meta_query = (true == bard_options( 'featured_slider_exc_images' )) ? [ [ 'key' => '_thumbnail_id', 'compare' => 'EXISTS' ] ] : []; 33 32 34 // Query Args 33 35 $args = array( … … 37 39 'posts_per_page' => bard_options( 'featured_slider_amount' ), 38 40 'ignore_sticky_posts' => 1, 39 'meta_query' => array( 40 array( 41 'key' => '_thumbnail_id', 42 'compare' => 'EXISTS' 43 ) 44 ), 41 'meta_query' => $meta_query, 45 42 ); 46 43
Note: See TracChangeset
for help on using the changeset viewer.