Plugin Directory

Changeset 2836447


Ignore:
Timestamp:
12/20/2022 07:50:13 AM (3 years ago)
Author:
optimistic_shekhar
Message:

Added support to disable guttenberg title

Location:
shk-hide-title
Files:
6 edited
2 copied

Legend:

Unmodified
Added
Removed
  • shk-hide-title/tags/1.0.4/hide_title.php

    r2204057 r2836447  
    4141                $check_results = '';
    4242            }
     43
    4344            echo '<input type="checkbox" name="st_hide_title_check_option" class="widefat" '.$check_results.'/>
    44                 <label><strong>Hide Page Titles</strong></label><br/>';
     45                <label><strong>Hide '. ucfirst($post->post_type) .' Title</strong></label><br/>';
    4546        }
    4647
     
    7980                        ?>
    8081                        <style type="text/css">
    81                         #post-<?php echo $post->ID; ?> .<?php echo $class; ?>
     82                        #post-<?php echo $post->ID; ?> .<?php echo $class; ?>,
     83                        h1.<?php echo $class; ?>
    8284                        {display:none;}
    8385                        </style>
  • shk-hide-title/tags/1.0.4/index.php

    r2204057 r2836447  
    44 * Plugin URI: http://shkthemes.com/shk-hide-title
    55 * Description: A Plugin To disable title for pages in WordPress
    6  * Version: 1.0.3
     6 * Version: 1.0.4
    77 * Author: Shekhar Bhandari, Shk Themes
    88 * Author URI: http://shekharbhandari.com.np/
  • shk-hide-title/tags/1.0.4/readme.txt

    r2204060 r2836447  
    2020--------
    2121
    22 31/122015 version 1.0.2
     2231/12/2015 version 1.0.2
    2323[!] Added Customizer option to enter the header class
    2424
     
    2727--------
    2828
    29 31/122015 version 1.0.3
     2931/12/2015 version 1.0.3
    3030- Added Customizer option to enter the header id that you wanted to Hide
    3131- Added the option to disable the post title too.
     
    3333--------
    3434
     3520/12/2021 version 1.0.4
     36- Added support to disable guttenberg title
     37
     38--------
     39
  • shk-hide-title/trunk/hide_title.php

    r2204057 r2836447  
    4141                $check_results = '';
    4242            }
     43
    4344            echo '<input type="checkbox" name="st_hide_title_check_option" class="widefat" '.$check_results.'/>
    44                 <label><strong>Hide Page Titles</strong></label><br/>';
     45                <label><strong>Hide '. ucfirst($post->post_type) .' Title</strong></label><br/>';
    4546        }
    4647
     
    7980                        ?>
    8081                        <style type="text/css">
    81                         #post-<?php echo $post->ID; ?> .<?php echo $class; ?>
     82                        #post-<?php echo $post->ID; ?> .<?php echo $class; ?>,
     83                        h1.<?php echo $class; ?>
    8284                        {display:none;}
    8385                        </style>
  • shk-hide-title/trunk/index.php

    r2204057 r2836447  
    44 * Plugin URI: http://shkthemes.com/shk-hide-title
    55 * Description: A Plugin To disable title for pages in WordPress
    6  * Version: 1.0.3
     6 * Version: 1.0.4
    77 * Author: Shekhar Bhandari, Shk Themes
    88 * Author URI: http://shekharbhandari.com.np/
  • shk-hide-title/trunk/readme.txt

    r2204060 r2836447  
    2020--------
    2121
    22 31/122015 version 1.0.2
     2231/12/2015 version 1.0.2
    2323[!] Added Customizer option to enter the header class
    2424
     
    2727--------
    2828
    29 31/122015 version 1.0.3
     2931/12/2015 version 1.0.3
    3030- Added Customizer option to enter the header id that you wanted to Hide
    3131- Added the option to disable the post title too.
     
    3333--------
    3434
     3520/12/2021 version 1.0.4
     36- Added support to disable guttenberg title
     37
     38--------
     39
Note: See TracChangeset for help on using the changeset viewer.