Changeset 143873
- Timestamp:
- 02/28/2021 01:17:51 AM (5 years ago)
- Location:
- perfect-blogging/0.2.5
- Files:
-
- 10 edited
- 1 copied
- . (copied) (copied from perfect-blogging/0.2.4)
- header.php (modified) (6 diffs)
- page-template/custom-front-page.php (modified) (7 diffs)
- readme.txt (modified) (2 diffs)
- style.css (modified) (18 diffs)
- template-parts/content-audio.php (modified) (1 diff)
- template-parts/content-gallery.php (modified) (1 diff)
- template-parts/content-image.php (modified) (2 diffs)
- template-parts/content-video.php (modified) (1 diff)
- template-parts/content.php (modified) (2 diffs)
- template-parts/grid-layout.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
perfect-blogging/0.2.5/header.php
r141639 r143873 22 22 <header role="banner"> 23 23 <?php if(get_theme_mod('perfect_blog_preloader_option',true) != '' || get_theme_mod('perfect_blog_responsive_preloader', true) != ''){ ?> 24 <div id="loader-wrapper" >24 <div id="loader-wrapper" class="w-100 h-100"> 25 25 <div id="loader"></div> 26 26 <div class="loader-section section-left"></div> … … 29 29 <?php }?> 30 30 <a class="screen-reader-text skip-link" href="#maincontent"><?php esc_html_e( 'Skip to content', 'perfect-blogging' ); ?></a> 31 <div id="header" >31 <div id="header" class="py-1"> 32 32 <div class="container"> 33 33 <div class="row"> … … 40 40 <?php if( get_theme_mod('perfect_blog_site_title',true) != ''){ ?> 41 41 <?php if ( is_front_page() && is_home() ) : ?> 42 <h1 class="site-title "><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>42 <h1 class="site-title p-0"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1> 43 43 <?php else : ?> 44 <p class="site-title "><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>44 <p class="site-title mb-0"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p> 45 45 <?php endif; ?> 46 46 <?php }?> … … 51 51 ?> 52 52 <?php if( get_theme_mod('perfect_blog_tagline',true) != ''){ ?> 53 <p class="site-description ">53 <p class="site-description mb-2"> 54 54 <?php echo esc_html($description); ?> 55 55 </p> … … 60 60 <?php 61 61 if(has_nav_menu('primary')){ ?> 62 <div class="toggle-menu responsive-menu ">62 <div class="toggle-menu responsive-menu my-2"> 63 63 <button class="mobiletoggle"><i class="fas fa-bars"></i><span class="screen-reader-text"><?php esc_html_e('Open Menu','perfect-blogging'); ?></span></button> 64 64 </div> … … 77 77 } 78 78 ?> 79 <div id="contact-info" >79 <div id="contact-info" class="text-center"> 80 80 <div class="social-icons"> 81 81 <?php if( get_theme_mod( 'perfect_blog_facebook_url') != '') { ?> 82 <a href="<?php echo esc_url( get_theme_mod( 'perfect_blog_facebook_url','' ) ); ?>" ><i class="fab fa-facebook-f"></i><span class="screen-reader-text"><?php esc_html_e( 'Facebook','perfect-blogging' );?></span></a>82 <a href="<?php echo esc_url( get_theme_mod( 'perfect_blog_facebook_url','' ) ); ?>" class="m-2"><i class="fab fa-facebook-f p-2"></i><span class="screen-reader-text"><?php esc_html_e( 'Facebook','perfect-blogging' );?></span></a> 83 83 <?php } ?> 84 84 <?php if( get_theme_mod( 'perfect_blog_twitter_url') != '') { ?> 85 <a href="<?php echo esc_url( get_theme_mod( 'perfect_blog_twitter_url','' ) ); ?>" ><i class="fab fa-twitter"></i><span class="screen-reader-text"><?php esc_html_e( 'Twitter','perfect-blogging' );?></span></a>85 <a href="<?php echo esc_url( get_theme_mod( 'perfect_blog_twitter_url','' ) ); ?>" class="m-2"><i class="fab fa-twitter p-2"></i><span class="screen-reader-text"><?php esc_html_e( 'Twitter','perfect-blogging' );?></span></a> 86 86 <?php } ?> 87 87 <?php if( get_theme_mod( 'perfect_blog_skipe_url' ) != '') { ?> 88 <a href="<?php echo esc_url( get_theme_mod( 'perfect_blog_skipe_url','' ) ); ?>" ><i class="fab fa-skype"></i><span class="screen-reader-text"><?php esc_html_e( 'Skype','perfect-blogging' );?></span></a>88 <a href="<?php echo esc_url( get_theme_mod( 'perfect_blog_skipe_url','' ) ); ?>" class="m-2"><i class="fab fa-skype p-2"></i><span class="screen-reader-text"><?php esc_html_e( 'Skype','perfect-blogging' );?></span></a> 89 89 <?php } ?> 90 90 <?php if( get_theme_mod( 'perfect_blog_pint_url') != '') { ?> 91 <a href="<?php echo esc_url( get_theme_mod( 'perfect_blog_pint_url','' ) ); ?>" ><i class="fab fa-pinterest-p"></i><span class="screen-reader-text"><?php esc_html_e( 'Pinterest','perfect-blogging' );?></span></a>91 <a href="<?php echo esc_url( get_theme_mod( 'perfect_blog_pint_url','' ) ); ?>" class="m-2"><i class="fab fa-pinterest-p p-2"></i><span class="screen-reader-text"><?php esc_html_e( 'Pinterest','perfect-blogging' );?></span></a> 92 92 <?php } ?> 93 93 </div> 94 94 <?php get_search_form();?> 95 95 </div> 96 <a href="javascript:void(0)" class="closebtn responsive-menu "><i class="far fa-times-circle"></i><span class="screen-reader-text"><?php esc_html_e('Close Menu','perfect-blogging'); ?></span></a>96 <a href="javascript:void(0)" class="closebtn responsive-menu p-2"><i class="far fa-times-circle"></i><span class="screen-reader-text"><?php esc_html_e('Close Menu','perfect-blogging'); ?></span></a> 97 97 </nav> 98 98 </div> 99 99 </div> 100 <div class="social-media col-lg-2 col-md-3 ">100 <div class="social-media col-lg-2 col-md-3 my-3"> 101 101 <?php if( get_theme_mod( 'perfect_blog_facebook_url') != '') { ?> 102 <a href="<?php echo esc_url( get_theme_mod( 'perfect_blog_facebook_url','' ) ); ?>"><i class="fab fa-facebook-f "></i><span class="screen-reader-text"><?php esc_html_e( 'Facebook','perfect-blogging' );?></span></a>102 <a href="<?php echo esc_url( get_theme_mod( 'perfect_blog_facebook_url','' ) ); ?>"><i class="fab fa-facebook-f p-2"></i><span class="screen-reader-text"><?php esc_html_e( 'Facebook','perfect-blogging' );?></span></a> 103 103 <?php } ?> 104 104 <?php if( get_theme_mod( 'perfect_blog_twitter_url') != '') { ?> 105 <a href="<?php echo esc_url( get_theme_mod( 'perfect_blog_twitter_url','' ) ); ?>"><i class="fab fa-twitter "></i><span class="screen-reader-text"><?php esc_html_e( 'Twitter','perfect-blogging' );?></span></a>105 <a href="<?php echo esc_url( get_theme_mod( 'perfect_blog_twitter_url','' ) ); ?>"><i class="fab fa-twitter p-2"></i><span class="screen-reader-text"><?php esc_html_e( 'Twitter','perfect-blogging' );?></span></a> 106 106 <?php } ?> 107 107 <?php if( get_theme_mod( 'perfect_blog_skipe_url' ) != '') { ?> 108 <a href="<?php echo esc_url( get_theme_mod( 'perfect_blog_skipe_url','' ) ); ?>"><i class="fab fa-skype "></i><span class="screen-reader-text"><?php esc_html_e( 'Skype','perfect-blogging' );?></span></a>108 <a href="<?php echo esc_url( get_theme_mod( 'perfect_blog_skipe_url','' ) ); ?>"><i class="fab fa-skype p-2"></i><span class="screen-reader-text"><?php esc_html_e( 'Skype','perfect-blogging' );?></span></a> 109 109 <?php } ?> 110 110 <?php if( get_theme_mod( 'perfect_blog_pint_url') != '') { ?> 111 <a href="<?php echo esc_url( get_theme_mod( 'perfect_blog_pint_url','' ) ); ?>"><i class="fab fa-pinterest-p "></i><span class="screen-reader-text"><?php esc_html_e( 'Pinterest','perfect-blogging' );?></span></a>111 <a href="<?php echo esc_url( get_theme_mod( 'perfect_blog_pint_url','' ) ); ?>"><i class="fab fa-pinterest-p p-2"></i><span class="screen-reader-text"><?php esc_html_e( 'Pinterest','perfect-blogging' );?></span></a> 112 112 <?php } ?> 113 113 </div> -
perfect-blogging/0.2.5/page-template/custom-front-page.php
r141639 r143873 39 39 <?php if( get_theme_mod('perfect_blog_slider_button','READ MORE') != ''){ ?> 40 40 <div class="more-btn"> 41 <a href="<?php the_permalink(); ?>" ><?php echo esc_html(get_theme_mod('perfect_blog_slider_button','READ MORE'));?><span class="more"><i class="fas fa-long-arrow-alt-right"></i></span><span class="screen-reader-text"><?php echo esc_html(get_theme_mod('perfect_blog_slider_button','READ MORE'));?><span class="more"><i class="fas fa-long-arrow-alt-right"></i></span></span></a>41 <a href="<?php the_permalink(); ?>" class="p-0 text-uppercase"><?php echo esc_html(get_theme_mod('perfect_blog_slider_button','READ MORE'));?><span class="more"><i class="fas fa-long-arrow-alt-right ml-2"></i></span><span class="screen-reader-text"><?php echo esc_html(get_theme_mod('perfect_blog_slider_button','READ MORE'));?><span class="more"><i class="fas fa-long-arrow-alt-right"></i></span></span></a> 42 42 </div> 43 43 <?php } ?> … … 66 66 <?php do_action( 'perfect_blog_after_slider' ); ?> 67 67 68 <div class="below-slider ">68 <div class="below-slider my-4"> 69 69 <div class="container"> 70 70 <div class="row"> 71 71 <div class="col-md-9"> 72 72 <div class="title"> 73 <?php if( get_theme_mod('perfect_blog_cat_title') != ''){ ?> <h2 ><?php echo esc_html(get_theme_mod('perfect_blog_cat_title','')); ?></h2>74 <hr class="titlehr ">73 <?php if( get_theme_mod('perfect_blog_cat_title') != ''){ ?> <h2 class="p-0"><?php echo esc_html(get_theme_mod('perfect_blog_cat_title','')); ?></h2> 74 <hr class="titlehr mb-3"> 75 75 <?php }?> 76 <div class="category-section row ">76 <div class="category-section row p-0"> 77 77 <?php 78 78 $perfect_blog_catData= get_theme_mod('perfect_blog_category'); … … 84 84 <?php if(has_post_thumbnail()) { ?><?php the_post_thumbnail(); ?><?php } ?> 85 85 </div> 86 <div class="contentbox ">87 <a href="<?php the_permalink(); ?>"><h3 ><?php the_title(); ?></h3><span class="screen-reader-text"><?php the_title(); ?></span></a>86 <div class="contentbox w-100 my-0 mx-auto"> 87 <a href="<?php the_permalink(); ?>"><h3 class="my-0 mx-auto text-uppercase p-3"><?php the_title(); ?></h3><span class="screen-reader-text"><?php the_title(); ?></span></a> 88 88 </div> 89 89 </div> … … 94 94 </div> 95 95 <hr> 96 <div class="category-post ">96 <div class="category-post my-4"> 97 97 <?php 98 98 $perfect_blog_catData= get_theme_mod('perfect_blogging_category_post'); … … 100 100 $page_query = new WP_Query(array( 'category_name' => esc_html($perfect_blog_catData,'perfect-blogging')));?> 101 101 <?php while( $page_query->have_posts() ) : $page_query->the_post(); ?> 102 <div class="main-cat-box row ">102 <div class="main-cat-box row mb-5"> 103 103 <?php if(has_post_thumbnail()) { ?> 104 104 <div class="box-image col-md-6"> … … 107 107 <?php } ?> 108 108 <div class="overlay <?php if(has_post_thumbnail()) { ?>col-md-6"<?php } else { ?>col-md-12"<?php } ?>> 109 <a href="<?php the_permalink(); ?>"><h4 ><?php the_title(); ?></h4><span class="screen-reader-text"><?php the_title(); ?></span></a>110 <div class="metabox ">111 <span class="entry-author "><i class="fas fa-user"></i><a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' )) ); ?>"><?php the_author(); ?></a></span>112 <span class="entry-date "><i class="fas fa-calendar-alt"></i><?php echo esc_html( get_the_date() ); ?></span>113 <span class="entry-comments "><i class="fas fa-comments"></i> <?php comments_number( __('0 Comment', 'perfect-blogging'), __('0 Comments', 'perfect-blogging'), __('% Comments', 'perfect-blogging') ); ?> </span>109 <a href="<?php the_permalink(); ?>"><h4 class="p-0"><?php the_title(); ?></h4><span class="screen-reader-text"><?php the_title(); ?></span></a> 110 <div class="metabox py-2"> 111 <span class="entry-author mr-2"><i class="fas fa-user"></i><a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' )) ); ?>"><?php the_author(); ?></a></span> 112 <span class="entry-date mr-2"><i class="fas fa-calendar-alt"></i><?php echo esc_html( get_the_date() ); ?></span> 113 <span class="entry-comments mr-2"><i class="fas fa-comments"></i> <?php comments_number( __('0 Comment', 'perfect-blogging'), __('0 Comments', 'perfect-blogging'), __('% Comments', 'perfect-blogging') ); ?> </span> 114 114 </div> 115 <p ><?php the_excerpt(); ?></p>115 <p class="mb-2"><?php the_excerpt(); ?></p> 116 116 <div class="read-comp"> 117 <a href="<?php echo esc_url( get_permalink() );?>"><?php esc_html_e('READ COMPLETE POST','perfect-blogging'); ?><span class="more "><i class="fas fa-long-arrow-alt-right"></i></span><span class="screen-reader-text"><?php esc_html_e( 'READ COMPLETE POST','perfect-blogging' );?></span></a>117 <a href="<?php echo esc_url( get_permalink() );?>"><?php esc_html_e('READ COMPLETE POST','perfect-blogging'); ?><span class="more p-2"><i class="fas fa-long-arrow-alt-right"></i></span><span class="screen-reader-text"><?php esc_html_e( 'READ COMPLETE POST','perfect-blogging' );?></span></a> 118 118 </div> 119 119 </div> … … 137 137 138 138 <?php do_action( 'perfect_blog_after_post_section' ); ?> 139 140 139 </main> 141 140 -
perfect-blogging/0.2.5/readme.txt
r141639 r143873 3 3 Tags: custom-background, custom-menu, custom-colors, custom-logo, editor-style, featured-images, front-page-post-form, full-width-template, footer-widgets, one-column, sticky-post, two-columns, theme-options, threaded-comments, right-sidebar, left-sidebar, grid-layout, three-columns, blog, news 4 4 Requires at least: 5.0 5 Tested up to: 5.6 5 Tested up to: 5.6.1 6 6 Requires PHP: 7.2.14 7 Stable Tag: 0.2. 47 Stable Tag: 0.2.5 8 8 License: GNU General Public License v3.0 9 9 License URI: http://www.gnu.org/licenses/gpl.html … … 70 70 * Corrected some focus errors. 71 71 72 = 0.2.5 = 73 * Optimized home page css. 74 72 75 == Resources == 73 76 -
perfect-blogging/0.2.5/style.css
r141639 r143873 5 5 Author URI: https://www.themeshopy.com/ 6 6 Description: The perfect blogging is a child theme of Perfect Blog, perfect blogging is attractive and is also categorised as a minimal blog theme crafted solely for the bloggers who are well versed in multipurpose blogging. Some important features accompanied with it are the user friendly personalization options like custom background apart from being SEO friendly. Other features included are styling options, call to action button [CTA] and the styling options.The perfect blog is a good blog theme that is associated with multiple characteristics or features. These are also translation ready making them suitable as far as understanding is concerned. The large slider is attached with a banner and it is where the CTA is. It is one of the important things that attract the visitors. They are experts in making personal blogs or sports blogs or fashion blogs or food blogs to photography blog, journals for the multipurpose magazines or newspaper theme. This theme has the compatibility with various feature layouts for different pages, products or posts. There is a security factor associated with it because of the clean code and the bootstrap framework with it increases the development speed. For the easy understanding of the theme, you have the interactive demo as well. Demo https://themeshopy.com/perfect-blog/ 7 Tested up to: 5.6 7 Tested up to: 5.6.1 8 8 Requires PHP: 7.2.14 9 Version: 0.2. 49 Version: 0.2.5 10 10 license: GNU General Public License v3.0 11 11 License URI: http://www.gnu.org/licenses/gpl.html … … 101 101 font-size: 15px; 102 102 } 103 #header .logo h1, #header .logo p{104 margin-bottom: 0;105 }106 .social-media{107 margin: 20px 0;108 }109 103 .page-template-custom-front-page .social-media i{ 110 104 border: solid 1px #3f424e; … … 112 106 } 113 107 .social-media i{ 114 padding: 10px;115 108 border: solid 1px #fff; 116 109 } … … 167 160 margin:0; 168 161 } 169 #sidebar .widget{170 margin-bottom: 25px;171 }172 162 #sidebar ul { 173 163 list-style: none; … … 182 172 } 183 173 /*------------------ Slider ------------------*/ 184 #slider .slide-cap a.read-more{185 border: none;186 padding: 0;187 }188 .below-slider,.category-post{189 padding: 3% 0;190 }191 .category-section{192 padding: 0;193 }194 174 .carousel-control-prev-icon, .carousel-control-next-icon { 195 175 display: inline-block; 196 176 width: 0px !important; 197 height: auto !important; ;177 height: auto !important; 198 178 } 199 179 #slider .inner_carousel .more-btn a { … … 203 183 font-weight: 700; 204 184 color: #fff; 205 padding: 0;206 185 } 207 186 #slider .inner_carousel .more-btn a:hover { 208 187 background: none; 209 188 color: #97cb17; 210 }211 #slider .inner_carousel .more-btn {212 margin-top: 0px;213 189 } 214 190 .middle-align { … … 216 192 padding: 20px 0 20px; 217 193 } 218 #slider .inner_carousel .more-btn a{219 text-transform: uppercase;220 }221 194 .read-comp a, #slider .inner_carousel .more-btn a, #comments .form-submit input[type="submit"]{ 222 195 border-radius: 0 !important; 223 196 } 224 197 /*------------------ Category Post Section ------------------*/ 225 .imagebox {226 padding: 2px 0;227 }228 198 .title h2 { 229 199 font-size: 25px; 230 margin: 0;231 }232 .title hr{233 margin-bottom: 15px;234 200 } 235 201 .contentbox { 236 width: 100%;237 margin: 0 auto;238 202 position: absolute; 239 203 top: 50%; … … 242 206 } 243 207 .contentbox h3 { 244 margin: 0 auto;245 208 color: #fff; 246 text-transform: uppercase;247 209 background: #101631c7; 248 210 display: table; 249 padding: 15px;250 211 font-size: 14px; 251 212 letter-spacing: 2px; … … 266 227 border-top: solid 1px #ebeced; 267 228 border-bottom: solid 1px #ebeced; 268 padding: 5px 0;269 margin-bottom: 10px;270 229 } 271 230 .metabox a{ … … 274 233 .metabox span{ 275 234 font-size: 16px; 276 margin-right: 5px;277 235 } 278 236 .metabox i:hover, .metabox a:hover{ … … 283 241 font-size: 15px; 284 242 line-height: 25px; 285 margin-bottom: 10px;286 243 } 287 244 .read-comp a { … … 293 250 color: #97cb17; 294 251 } 295 .main-cat-box {296 margin-bottom: 20px;297 }298 span.more {299 padding: 5px;300 }301 252 /*------------------ Custom Post ------------------*/ 302 253 .entry-comments, span.entry-date{ … … 319 270 float: none; 320 271 } 321 .main-cat-box { 322 margin-bottom: 5%; 323 } 324 .main-cat-box h2{ 325 color: #3f424e; 326 } 327 hr { 272 hr{ 328 273 margin-top: 1rem; 329 274 margin-bottom: 1rem; … … 350 295 background: #3f424e; 351 296 } 297 #footer form.woocommerce-product-search button, #sidebar form.woocommerce-product-search button{ 298 background: #97cb17; 299 border: 1px solid #97cb17; 300 } 352 301 #sidebar input[type="submit"],.second-border a:hover,.pagination .current,.pagination a:hover,#sidebar .tagcloud a:hover,.copyright,#footer .tagcloud a:hover,.meta-nav{ 353 302 background: #97cb17; … … 416 365 .social-icons i{ 417 366 border: 1px solid #fff; 418 padding: 10px;419 367 font-size: 15px; 420 368 } … … 427 375 color: #000; 428 376 } 429 .social-icons a{430 padding: 5px;431 }432 377 .sidebar .closebtn a,.page-template-custom-front-page .primary-navigation a{ 433 378 color: #fff; … … 458 403 display: none; 459 404 } 460 #slider .inner_carousel .more-btn {461 margin-top: 20px;462 }463 405 #menu-sidebar input[type="search"]{ 464 406 display: block; … … 469 411 } 470 412 } 471 @media screen and (max-width: 1024px) and (min-width: 1000px){472 .social-media i{473 padding: 7px;474 }475 .primary-navigation ul{476 margin: 0;477 }478 }479 @media screen and (max-width: 720px){480 #slider .inner_carousel .more-btn{481 margin:0 !important;482 }483 } -
perfect-blogging/0.2.5/template-parts/content-audio.php
r141639 r143873 22 22 } 23 23 ?> 24 <div class="main-cat-box ">24 <div class="main-cat-box mb-4"> 25 25 <h2><a href="<?php echo esc_url( get_permalink() ); ?>" title="<?php echo the_title_attribute(); ?>"><?php the_title();?><span class="screen-reader-text"><?php the_title(); ?></span></a></h2> 26 26 <?php if( get_theme_mod( 'perfect_blog_author_hide',true) != '' || get_theme_mod( 'perfect_blog_date_hide',true) != '' || get_theme_mod( 'perfect_blog_comment_hide',true) != '') { ?> 27 <div class="metabox ">27 <div class="metabox p-1"> 28 28 <?php if( get_theme_mod( 'perfect_blog_author_hide',true) != '') { ?> 29 29 <span class="entry-author"><i class="fas fa-user"></i><a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' )) ); ?>"><?php the_author(); ?><span class="screen-reader-text"><?php the_author(); ?></span></a></span><?php echo esc_html( get_theme_mod('perfect_blog_metabox_separator_blog_post') ); ?> -
perfect-blogging/0.2.5/template-parts/content-gallery.php
r141639 r143873 13 13 $archive_day = get_the_time('d'); 14 14 ?> 15 <div class="main-cat-box ">15 <div class="main-cat-box mb-5"> 16 16 <h2><a href="<?php echo esc_url( get_permalink() ); ?>" title="<?php echo the_title_attribute(); ?>"><?php the_title();?><span class="screen-reader-text"><?php the_title(); ?></span></a></h2> 17 17 <?php if( get_theme_mod( 'perfect_blog_author_hide',true) != '' || get_theme_mod( 'perfect_blog_date_hide',true) != '' || get_theme_mod( 'perfect_blog_comment_hide',true) != '') { ?> 18 <div class="metabox ">18 <div class="metabox p-1"> 19 19 <?php if( get_theme_mod( 'perfect_blog_author_hide',true) != '') { ?> 20 20 <span class="entry-author"><i class="fas fa-user"></i><a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' )) ); ?>"><?php the_author(); ?><span class="screen-reader-text"><?php the_author(); ?></span></a></span><?php echo esc_html( get_theme_mod('perfect_blog_metabox_separator_blog_post') ); ?> -
perfect-blogging/0.2.5/template-parts/content-image.php
r141639 r143873 13 13 $archive_day = get_the_time('d'); 14 14 ?> 15 <div class="main-cat-box ">15 <div class="main-cat-box mb-5"> 16 16 <div class="row"> 17 17 <?php if(has_post_thumbnail()) { ?> … … 23 23 <h2><a href="<?php echo esc_url( get_permalink() ); ?>" title="<?php echo the_title_attribute(); ?>"><?php the_title();?><span class="screen-reader-text"><?php the_title(); ?></span></a></h2> 24 24 <?php if( get_theme_mod( 'perfect_blog_author_hide',true) != '' || get_theme_mod( 'perfect_blog_date_hide',true) != '' || get_theme_mod( 'perfect_blog_comment_hide',true) != '') { ?> 25 <div class="metabox ">25 <div class="metabox p-1"> 26 26 <?php if( get_theme_mod( 'perfect_blog_author_hide',true) != '') { ?> 27 27 <span class="entry-author"><i class="fas fa-user"></i><a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' )) ); ?>"><?php the_author(); ?><span class="screen-reader-text"><?php the_author(); ?></span></a></span><?php echo esc_html( get_theme_mod('perfect_blog_metabox_separator_blog_post') ); ?> -
perfect-blogging/0.2.5/template-parts/content-video.php
r141639 r143873 22 22 } 23 23 ?> 24 <div class="main-cat-box ">24 <div class="main-cat-box mb-5"> 25 25 <h2><a href="<?php echo esc_url( get_permalink() ); ?>" title="<?php echo the_title_attribute(); ?>"><?php the_title();?><span class="screen-reader-text"><?php the_title(); ?></span></a></h2> 26 26 <?php if( get_theme_mod( 'perfect_blog_author_hide',true) != '' || get_theme_mod( 'perfect_blog_date_hide',true) != '' || get_theme_mod( 'perfect_blog_comment_hide',true) != '') { ?> 27 <div class="metabox ">27 <div class="metabox p-1"> 28 28 <?php if( get_theme_mod( 'perfect_blog_author_hide',true) != '') { ?> 29 29 <span class="entry-author"><i class="fas fa-user"></i><a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' )) ); ?>"><?php the_author(); ?><span class="screen-reader-text"><?php the_author(); ?></span></a></span><?php echo esc_html( get_theme_mod('perfect_blog_metabox_separator_blog_post') ); ?> -
perfect-blogging/0.2.5/template-parts/content.php
r141639 r143873 13 13 $archive_day = get_the_time('d'); 14 14 ?> 15 <div class="main-cat-box ">15 <div class="main-cat-box mb-5"> 16 16 <div class="row"> 17 17 <?php if(has_post_thumbnail()) { ?> … … 23 23 <h2><a href="<?php echo esc_url( get_permalink() ); ?>" title="<?php echo the_title_attribute(); ?>"><?php the_title();?><span class="screen-reader-text"><?php the_title(); ?></span></a></h2> 24 24 <?php if( get_theme_mod( 'perfect_blog_author_hide',true) != '' || get_theme_mod( 'perfect_blog_date_hide',true) != '' || get_theme_mod( 'perfect_blog_comment_hide',true) != '') { ?> 25 <div class="metabox ">25 <div class="metabox p-1"> 26 26 <?php if( get_theme_mod( 'perfect_blog_author_hide',true) != '') { ?> 27 27 <span class="entry-author"><i class="fas fa-user"></i><a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' )) ); ?>"><?php the_author(); ?><span class="screen-reader-text"><?php the_author(); ?></span></a></span><?php echo esc_html( get_theme_mod('perfect_blog_metabox_separator_blog_post') ); ?> -
perfect-blogging/0.2.5/template-parts/grid-layout.php
r140186 r143873 14 14 ?> 15 15 <div class="col-md-4 col-sm-4"> 16 <div class="main-cat-box ">16 <div class="main-cat-box mb-5"> 17 17 <h2><a href="<?php echo esc_url( get_permalink() ); ?>" title="<?php echo the_title_attribute(); ?>"><?php the_title();?><span class="screen-reader-text"><?php the_title(); ?></span></a></h2> 18 18 <?php if( get_theme_mod( 'perfect_blog_author_hide',true) != '' || get_theme_mod( 'perfect_blog_date_hide',true) != '' || get_theme_mod( 'perfect_blog_comment_hide',true) != '') { ?> 19 <div class="metabox ">19 <div class="metabox p-1"> 20 20 <?php if( get_theme_mod( 'perfect_blog_author_hide',true) != '') { ?> 21 21 <span class="entry-author"><i class="fas fa-user"></i><a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' )) ); ?>"><?php the_author(); ?><span class="screen-reader-text"><?php the_author(); ?></span></a></span><?php echo esc_html( get_theme_mod('perfect_blog_metabox_separator_blog_post') ); ?>
Note: See TracChangeset for help on using the changeset viewer.