Changeset 294082 for movie-review-blog/3.1
- Timestamp:
- 10/20/2025 11:01:40 AM (5 weeks ago)
- Location:
- movie-review-blog/3.1
- Files:
-
- 12 edited
- 1 copied
-
. (copied) (copied from movie-review-blog/3.0)
-
archive.php (modified) (1 diff)
-
core/includes/customizer.php (modified) (1 diff)
-
core/includes/importer/assets/css/importer-style.css (modified) (1 diff)
-
core/includes/inline.php (modified) (1 diff)
-
functions.php (modified) (1 diff)
-
index.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
search.php (modified) (1 diff)
-
sidebar.php (modified) (1 diff)
-
single.php (modified) (2 diffs)
-
style.css (modified) (8 diffs)
-
template-parts/content-post.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
movie-review-blog/3.1/archive.php
r287968 r294082 1 1 <?php get_header(); ?> 2 2 3 <div id="content" >3 <div id="content" class="layout-img"> 4 4 <div class="feature-header"> 5 5 <div class="feature-post-thumbnail"> -
movie-review-blog/3.1/core/includes/customizer.php
r287968 r294082 1025 1025 'label' => __( 'Choose Your Copyright Background Color', 'movie-review-blog' ), 1026 1026 'section' => 'movie_review_blog_footer_section', 1027 'default' => ' ',1027 'default' => '#000000', 1028 1028 ] ); 1029 1029 -
movie-review-blog/3.1/core/includes/importer/assets/css/importer-style.css
r285142 r294082 10 10 padding: 100px; 11 11 background: #1d2327; 12 height: max-content; 12 13 } 13 14 .importer-wrap.spinning .destiny-going { -
movie-review-blog/3.1/core/includes/inline.php
r287968 r294082 2 2 3 3 $movie_review_blog_custom_css = ''; 4 5 6 $movie_review_blog_is_dark_mode_enabled = get_theme_mod( 'movie_review_blog_is_dark_mode_enabled', false );7 8 if ( $movie_review_blog_is_dark_mode_enabled ) {9 10 $movie_review_blog_custom_css .= 'body,.fixed-header,tr:nth-child(2n+2) {';11 $movie_review_blog_custom_css .= 'background: #000;';12 $movie_review_blog_custom_css .= '}';13 14 $movie_review_blog_custom_css .= 'body,h1,h2,h3,h4,h5,p,.main-navigation ul li a,.woocommerce .woocommerce-ordering select, .woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea,a,.logo span,.logo a{';15 $movie_review_blog_custom_css .= 'color: #fff;';16 $movie_review_blog_custom_css .= '}';17 18 $movie_review_blog_custom_css .= 'a.wc-block-components-product-name, .wc-block-components-product-name,.wc-block-components-totals-footer-item .wc-block-components-totals-item__value,19 .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,20 .wc-block-components-totals-item__label,.wc-block-components-totals-item__value,21 .wc-block-components-product-metadata .wc-block-components-product-metadata__description>p,22 .is-medium table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total .wc-block-components-formatted-money-amount,23 .wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input,24 .wc-block-components-quantity-selector .wc-block-components-quantity-selector__button,25 .wc-block-components-quantity-selector,table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link,26 .wc-block-components-product-price__value.is-discounted,del.wc-block-components-product-price__regular{';27 $movie_review_blog_custom_css .= 'color: #fff !important;';28 $movie_review_blog_custom_css .= '}';29 30 $movie_review_blog_custom_css .= 'h5.product-text a,#featured-product p.price,.card-header a,.comment-content.card-block p{';31 $movie_review_blog_custom_css .= 'color: #000 !important';32 $movie_review_blog_custom_css .= '}';33 34 $movie_review_blog_custom_css .= '.post-box{';35 $movie_review_blog_custom_css .= ' border: 1px solid rgb(229 229 229 / 48%)';36 $movie_review_blog_custom_css .= '}';37 }38 4 39 5 /*---------------------------text-transform-------------------*/ -
movie-review-blog/3.1/functions.php
r285142 r294082 474 474 } 475 475 endif; 476 477 /*-----------------------------------------------------------------------------------*/ 478 /* Dark Mode */ 479 /*-----------------------------------------------------------------------------------*/ 480 481 function movie_review_blog_body_class( $movie_review_blog_classes ) { 482 $movie_review_blog_dark_mode_enabled = get_theme_mod( 'movie_review_blog_is_dark_mode_enabled', false ); 483 484 if ( $movie_review_blog_dark_mode_enabled ) { 485 $movie_review_blog_classes[] = 'dark-mode'; 486 } 487 488 return $movie_review_blog_classes; 489 } 490 add_filter( 'body_class', 'movie_review_blog_body_class' ); -
movie-review-blog/3.1/index.php
r287968 r294082 1 1 <?php get_header(); ?> 2 2 3 <div id="content" >3 <div id="content" class="layout-img"> 4 4 <div class="feature-header"> 5 5 <div class="feature-post-thumbnail"> -
movie-review-blog/3.1/readme.txt
r291117 r294082 3 3 Tags: photography, entertainment, blog, one-column, two-columns, three-columns, four-columns, right-sidebar, left-sidebar, grid-layout, custom-background, custom-colors, custom-header, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, featured-image-header, editor-style, post-formats, rtl-language-support, theme-options, threaded-comments, translation-ready 4 4 Requires at least: 5.0 5 Stable tag: 3. 05 Stable tag: 3.1 6 6 Requires PHP: 7.2 7 7 Tested up to: 6.8 … … 155 155 * Updated getstart & sidebar. 156 156 157 = 3.1 = October - 16 - 2025 158 159 * Updated demo importer height when debug is on. 160 * Updated dark mode. 161 * Added category & tag in single post page. 162 * Added class for post-thumbnail in archive, index, search & related post. 163 * Updated sidebar.php file. 164 * Updated copyright bg issue. 165 * Added underline in footer text. 166 * Updated sticky post css. 167 157 168 == Resources == 158 169 -
movie-review-blog/3.1/search.php
r287968 r294082 1 1 <?php get_header(); ?> 2 2 3 <div id="content" >3 <div id="content" class="layout-img"> 4 4 <div class="feature-header"> 5 5 <div class="feature-post-thumbnail"> -
movie-review-blog/3.1/sidebar.php
r287968 r294082 1 1 <div class="sidebar-area mt-5 wow fadeInRight"> 2 2 <?php if ( ! dynamic_sidebar( 'movie-review-blog-sidebar' ) ) : ?> 3 <h4 class="title"><?php esc_html_e('Search Here', 'movie-review-blog'); ?></h4> 4 <form method="get" id="searchform" class="searchform" action="<?php echo esc_url(home_url('/')); ?>"> 5 <input placeholder="<?php esc_attr_e('Type here...', 'movie-review-blog'); ?>" type="text" name="s" id="search" value="<?php the_search_query(); ?>" /> 6 <input type="submit" class="search-submit" value="<?php esc_attr_e('Search', 'movie-review-blog');?>" /> 7 </form> 3 <aside id="search" class="sidebar-widget widget_search" role="complementary"> 4 <h4 class="title"><?php esc_html_e('Search Here', 'movie-review-blog'); ?></h4> 5 <form method="get" id="searchform" class="searchform" action="<?php echo esc_url(home_url('/')); ?>"> 6 <input placeholder="<?php esc_attr_e('Type here...', 'movie-review-blog'); ?>" type="text" name="s" id="search" value="<?php the_search_query(); ?>" /> 7 <input type="submit" class="search-submit" value="<?php esc_attr_e('Search', 'movie-review-blog');?>" /> 8 </form> 9 </aside> 8 10 <aside id="categories-2" class="sidebar-widget widget_categories" role="complementary"> 9 11 <h4 class="title"><?php esc_html_e('Categories', 'movie-review-blog'); ?></h4> -
movie-review-blog/3.1/single.php
r287968 r294082 46 46 ?> 47 47 <!-- Related Posts --> 48 <div class="related-posts ">48 <div class="related-posts layout-img"> 49 49 <h3 class="py-2"><?php esc_html_e('Related Posts:-', 'movie-review-blog'); ?></h3> 50 50 <div class="row"> … … 112 112 ?> 113 113 <!-- Related Posts --> 114 <div class="related-posts ">114 <div class="related-posts layout-img"> 115 115 <h3 class="py-2"><?php esc_html_e('Related Posts:-', 'movie-review-blog'); ?></h3> 116 116 <div class="row"> -
movie-review-blog/3.1/style.css
r291117 r294082 5 5 Theme URI: https://www.misbahwp.com/products/free-movie-wordpress-theme 6 6 Author URI: https://www.misbahwp.com/ 7 Version: 3. 07 Version: 3.1 8 8 Requires PHP: 7.2 9 9 Tested up to: 6.8 … … 380 380 font-weight: 500; 381 381 color: #000000; 382 word-wrap: break-word; 382 383 } 383 384 .post-content p{ … … 416 417 max-width: 100%; 417 418 } 418 .post-content img, 419 .post-thumbnail img { 419 .layout-img img { 420 420 max-height:100%; 421 421 height:300px; … … 424 424 border-radius: 10px; 425 425 background: #dfdcdc; 426 } 427 .sidebar-area img{ 428 height:auto; 429 width: auto; 426 430 } 427 431 .post-content{ … … 710 714 height: 300px !important; 711 715 object-fit: cover; 712 opacity: 0. 9;716 opacity: 0.4; 713 717 } 714 718 h1.post-title.feature-header-title{ … … 892 896 border: 1px solid rgba(0, 0, 0, 0.125); 893 897 } 894 .post-box{895 position: relative;896 } 897 .sticky .post-thumbnail::before {898 h3.post-title{ 899 position: relative; 900 } 901 .sticky h3.post-title::before { 898 902 content: '\f08d'; 899 903 font-family: "Font Awesome\ 5 Free"; 900 font-size: 30px;904 font-size: 25px; 901 905 font-weight: 900; 902 color: # fff;906 color: #000; 903 907 margin-top: 10px; 904 908 z-index: 9; 909 left: -30px; 905 910 position: absolute; 906 top: 27px; 907 left: 27px; 908 transform: rotate(312deg); 911 bottom: -6px; 912 } 913 .sticky h3.post-title { 914 margin-left: 30px; 915 } 916 917 .copyright{ 918 background: #000000; 909 919 } 910 920 … … 1406 1416 margin:5px 5px 0; 1407 1417 width:96%; 1408 height: 100%1418 height:auto; 1409 1419 } 1410 1420 … … 1426 1436 margin: 4px; 1427 1437 } 1438 1439 /* DARK MODE CSS */ 1440 body.dark-mode { 1441 background-color: #000000 !important; 1442 color: #f1f1f1 !important; 1443 } 1444 1445 body.dark-mode h1, body.dark-mode h2, body.dark-mode h3, body.dark-mode h4, body.dark-mode h5, body.dark-mode h6,body.dark-mode .sticky h3.post-title::before, 1446 body.dark-mode a ,body.dark-mode p, body.dark-mode li, body.dark-mode blockquote ,body.dark-mode label ,body.dark-mode span,body.dark-mode .post-content,body.dark-mode .main-navigation .dashicons-arrow-down-alt2:before,.header-search i,body.dark-mode .wc-block-components-totals-footer-item .wc-block-components-totals-item__value, body.dark-mode .wc-block-components-totals-footer-item .wc-block-components-totals-item__label, body.dark-mode .wc-block-components-totals-item__label, body.dark-mode .wc-block-components-totals-item__value, body.dark-mode .wc-block-components-product-metadata .wc-block-components-product-metadata__description>p, body.dark-mode .is-medium table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total .wc-block-components-formatted-money-amount, body.dark-mode .wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input, body.dark-mode .wc-block-components-quantity-selector .wc-block-components-quantity-selector__button, body.dark-mode .wc-block-components-quantity-selector, body.dark-mode table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link, body.dark-mode .wc-block-components-product-price__value.is-discounted, body.dark-mode del.wc-block-components-product-price__regular,body.dark-mode .woocommerce .woocommerce-ordering select, body.dark-mode .woocommerce form .form-row input.input-text, body.dark-mode .woocommerce form .form-row textarea { 1447 color: #fff !important; 1448 } 1449 1450 body.dark-mode span.woocommerce-Price-amount.amount{ 1451 color: grey !important; 1452 } 1453 1454 body.dark-mode input, body.dark-mode select, body.dark-mode textarea, body.dark-mode button { 1455 background-color: #333; 1456 color: #fff; 1457 } 1458 1459 body.dark-mode #site-navigation .page_item_has_children ul li a,body.dark-mode #site-navigation .main-navigation .menu .menu-item-has-children ul li a,body.dark-mode p.slider-button a:hover,body.dark-mode .screen-reader-text:focus,body.dark-mode #wp-admin-bar-woocommerce-site-visibility-badge a.ab-item,h4.product-text a,body.dark-mode .searchform input[type=text],body.dark-mode ul.woocommerce-error li{ 1460 color: #000 !important; 1461 } 1462 1463 body.dark-mode input[type="submit"], body.dark-mode button[type="submit"] { 1464 background-color: var(--first-color); 1465 color: #fff; 1466 } 1467 1468 body.dark-mode table { 1469 background-color: #1e1e1e !important; 1470 color: #f1f1f1 !important; 1471 } 1472 body.dark-mode th ,body.dark-mode td { 1473 background-color: #333 !important; 1474 color: #fff !important; 1475 } 1476 body.dark-mode tr { 1477 color: #fff !important; 1478 } 1479 1480 body.dark-mode pre, body.dark-mode code { 1481 background-color: #1e1e1e !important; 1482 color: #f1f1f1 !important; 1483 } 1484 1485 body.dark-mode .post-box,body.dark-mode #coming-soon-footer-banner,body.dark-mode div.product .woocommerce-tabs ul.tabs li, 1486 body.dark-mode .pagination a,body.dark-mode .movie-review-blog-pagination a span,#featured-product{ 1487 background: #121212 !important; 1488 } 1489 1490 body.dark-mode #wp-calendar th, body.dark-mode #wp-calendar td{ 1491 color: #fff !important; 1492 } 1493 1494 body.dark-mode ul, body.dark-mode ol { 1495 color: #f1f1f1 !important; 1496 } 1497 1498 body.dark-mode footer { 1499 background-color: #1f1f1f; 1500 color: #f1f1f1; 1501 } 1502 1503 body.dark-mode .pagination a { 1504 color: var(--first-color); 1505 } 1506 1507 body.dark-mode .widget { 1508 background-color: #1e1e1e; 1509 } 1510 1511 body.dark-mode .widget a { 1512 color: #f1f1f1; 1513 } 1514 1515 body.dark-mode .sidebar-area .sidebar-widget,body.dark-mode .media-body-wrap.card{ 1516 background: #121212; 1517 } 1518 1519 @media screen and (max-width : 1000px){ 1520 body.dark-mode #site-navigation .main-navigation .menu .menu-item-has-children ul li a{ 1521 color: #fff !important; 1522 } 1523 } -
movie-review-blog/3.1/template-parts/content-post.php
r234128 r294082 8 8 the_content(); 9 9 the_tags('<div class="post-tags"><strong>'.esc_html__('Tags:','movie-review-blog').'</strong> ', ', ', '</div>'); 10 if ( get_the_category_list() ) : ?> 11 <div class="post-categories"> 12 <strong><?php esc_html_e( 'Categories:', 'movie-review-blog' ); ?></strong> 13 <?php the_category( ', ' ); ?> 14 </div> 15 <?php endif; 10 16 ?> 11 17 </div>
Note: See TracChangeset
for help on using the changeset viewer.