Make WordPress Themes

Changeset 178616


Ignore:
Timestamp:
10/31/2022 08:59:14 AM (3 years ago)
Author:
themedropbox
Message:

New version of BlockStrap - 0.0.10

Location:
blockstrap/0.0.10
Files:
9 edited
1 copied

Legend:

Unmodified
Added
Removed
  • blockstrap/0.0.10/functions.php

    r178431r178616 
    120120 * @return mixed
    121121 */
    122 function bs_body_class( $classes ) {
     122function blockstrap_body_class( $classes ) {
    123123    $classes[] = 'bsui';
    124124
    125125    return $classes;
    126126}
    127 add_filter( 'body_class', 'bs_body_class' );
     127add_filter( 'body_class', 'blockstrap_body_class' );
    128128
    129129/**
     
    132132 * @return void
    133133 */
    134 function bs_enqueue_block_editor_assets() {
     134function blockstrap_enqueue_block_editor_assets() {
    135135
    136136    wp_enqueue_style(
     
    149149
    150150}
    151 add_action( 'enqueue_block_editor_assets', 'bs_enqueue_block_editor_assets', 1000 );
     151add_action( 'enqueue_block_editor_assets', 'blockstrap_enqueue_block_editor_assets', 1000 );
  • blockstrap/0.0.10/inc/content-block-patterns.php

    r178431r178616 
    2828            'categories' => array( 'page-content' ),
    2929            'content'    => defined( 'BLOCKSTRAP_BLOCKS_VERSION' ) ? apply_filters(
    30                 'bs_pattern_page_content_404_default',
     30                'blockstrap_pattern_page_content_404_default',
    3131                ''
    3232            ) : '<!-- wp:group {"tagName":"main"} -->
     
    4444            'categories' => array( 'page-content' ),
    4545            'content'    => defined( 'BLOCKSTRAP_BLOCKS_VERSION' ) ? apply_filters(
    46                 'bs_pattern_page_content_archive_default',
     46                'blockstrap_pattern_page_content_archive_default',
    4747                ''
    4848            ) : '<!-- wp:group {"tagName":"main"} -->
     
    8080            'categories' => array( 'page-content' ),
    8181            'content'    => defined( 'BLOCKSTRAP_BLOCKS_VERSION' ) ? apply_filters(
    82                 'bs_pattern_page_content_page_default',
     82                'blockstrap_pattern_page_content_page_default',
    8383                ''
    8484            ) : '<!-- wp:group {"tagName":"main"} -->
     
    9898            'categories' => array( 'page-content' ),
    9999            'content'    => defined( 'BLOCKSTRAP_BLOCKS_VERSION' ) ? apply_filters(
    100                 'bs_pattern_page_content_post_default',
     100                'blockstrap_pattern_page_content_post_default',
    101101                ''
    102102            ) : '<!-- wp:group {"tagName":"main"} -->
     
    116116            'categories' => array( 'page-content' ),
    117117            'content'    => defined( 'BLOCKSTRAP_BLOCKS_VERSION' ) ? apply_filters(
    118                 'bs_pattern_page_content_search_default',
     118                'blockstrap_pattern_page_content_search_default',
    119119                ''
    120120            ) : '<!-- wp:group {"tagName":"main"} -->
     
    154154            'categories' => array( 'page-content' ),
    155155            'content'    => defined( 'BLOCKSTRAP_BLOCKS_VERSION' ) ? apply_filters(
    156                 'bs_pattern_page_content_page_sidebar_left_default',
     156                'blockstrap_pattern_page_content_page_sidebar_left_default',
    157157                ''
    158158            ) : '<!-- wp:group {"tagName":"main"} -->
     
    180180            'categories' => array( 'page-content' ),
    181181            'content'    => defined( 'BLOCKSTRAP_BLOCKS_VERSION' ) ? apply_filters(
    182                 'bs_pattern_page_content_page_sidebar_right_default',
     182                'blockstrap_pattern_page_content_page_sidebar_right_default',
    183183                ''
    184184            ) : '<!-- wp:group {"tagName":"main"} -->
     
    207207                'categories' => array( 'page-content' ),
    208208                'content'    => defined( 'BLOCKSTRAP_BLOCKS_VERSION' ) ? apply_filters(
    209                     'bs_pattern_page_content_gd_archive_default',
     209                    'blockstrap_pattern_page_content_gd_archive_default',
    210210                    ''
    211211                ) : '<!-- wp:group {"tagName":"main"} -->
     
    223223                'categories' => array( 'page-content' ),
    224224                'content'    => defined( 'BLOCKSTRAP_BLOCKS_VERSION' ) ? apply_filters(
    225                     'bs_pattern_page_content_gd_search_default',
     225                    'blockstrap_pattern_page_content_gd_search_default',
    226226                    ''
    227227                ) : '<!-- wp:group {"tagName":"main"} -->
     
    239239                'categories' => array( 'page-content' ),
    240240                'content'    => defined( 'BLOCKSTRAP_BLOCKS_VERSION' ) ? apply_filters(
    241                     'bs_pattern_page_content_gd_single_default',
     241                    'blockstrap_pattern_page_content_gd_single_default',
    242242                    ''
    243243                ) : '<!-- wp:group {"tagName":"main"} -->
  • blockstrap/0.0.10/inc/footer-block-patterns.php

    r178431r178616 
    2828            'categories' => array( 'site-footer' ),
    2929            'content'    => defined( 'BLOCKSTRAP_BLOCKS_VERSION' ) ? apply_filters(
    30                 'bs_pattern_footer_default',
     30                'blockstrap_pattern_footer_default',
    3131                ''
    3232            ) : '',
  • blockstrap/0.0.10/inc/header-block-patterns.php

    r178431r178616 
    2828            'categories' => array( 'site-header' ),
    2929            'content'    => defined( 'BLOCKSTRAP_BLOCKS_VERSION' ) ? apply_filters(
    30                 'bs_pattern_header_default',
     30                'blockstrap_pattern_header_default',
    3131                ''
    3232            ) : '<!-- wp:site-title /-->',
  • blockstrap/0.0.10/inc/hero-block-patterns.php

    r178431r178616 
    2828            'categories' => array( 'hero-sections' ),
    2929            'content'    => defined( 'BLOCKSTRAP_BLOCKS_VERSION' ) ? apply_filters(
    30                 'bs_pattern_hero_home_default',
     30                'blockstrap_pattern_hero_home_default',
    3131                ''
    3232            ) : '',
     
    4040            'categories' => array( 'hero-sections' ),
    4141            'content'    => defined( 'BLOCKSTRAP_BLOCKS_VERSION' ) ? apply_filters(
    42                 'bs_pattern_hero_404_default',
     42                'blockstrap_pattern_hero_404_default',
    4343                ''
    4444            ) : '',
     
    5252            'categories' => array( 'hero-sections' ),
    5353            'content'    => defined( 'BLOCKSTRAP_BLOCKS_VERSION' ) ? apply_filters(
    54                 'bs_pattern_hero_archive_default',
     54                'blockstrap_pattern_hero_archive_default',
    5555                ''
    5656            ) : '',
     
    6464            'categories' => array( 'hero-sections' ),
    6565            'content'    => defined( 'BLOCKSTRAP_BLOCKS_VERSION' ) ? apply_filters(
    66                 'bs_pattern_hero_page_default',
     66                'blockstrap_pattern_hero_page_default',
    6767                ''
    6868            ) : '',
     
    7676            'categories' => array( 'hero-sections' ),
    7777            'content'    => defined( 'BLOCKSTRAP_BLOCKS_VERSION' ) ? apply_filters(
    78                 'bs_pattern_hero_post_default',
     78                'blockstrap_pattern_hero_post_default',
    7979                ''
    8080            ) : '',
  • blockstrap/0.0.10/inc/section-block-patterns.php

    r178431r178616 
    2828            'categories' => array( 'feature-sections' ),
    2929            'content'    => defined( 'BLOCKSTRAP_BLOCKS_VERSION' ) ? apply_filters(
    30                 'bs_pattern_feature_home_default',
     30                'blockstrap_pattern_feature_home_default',
    3131                ''
    3232            ) : '<!-- wp:group {"tagName":"main"} -->
  • blockstrap/0.0.10/inc/template-part-block-patterns.php

    r178431r178616 
    2828            'categories' => array( 'template-parts' ),
    2929            'content'    => defined( 'BLOCKSTRAP_BLOCKS_VERSION' ) ? apply_filters(
    30                 'bs_pattern_part_comments_default',
     30                'blockstrap_pattern_part_comments_default',
    3131                ''
    3232            ) : '<!-- wp:comments -->
     
    7474            'categories' => array( 'template-parts' ),
    7575            'content'    => defined( 'BLOCKSTRAP_BLOCKS_VERSION' ) ? apply_filters(
    76                 'bs_pattern_part_main_default',
     76                'blockstrap_pattern_part_main_default',
    7777                ''
    7878            ) : '',
  • blockstrap/0.0.10/readme.txt

    r178431r178616 
    44Requires at least: 6.0
    55Requires PHP: 7.2
    6 Version: 0.0.9
     6Version: 0.0.10
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1414
    1515== Changelog ==
     16
     17= 0.0.10 =
     18* Made copyright/licensing of screenshot illustration more clear - UPDATED
     19* Updated function/filter prefix of `bs_` to `bootstrap_` - UPDATED
    1620
    1721= 0.0.9 =
     
    6973* Image for theme screenshot illustration, Copyright AyeCode Ltd
    7074  License: CC0 1.0 Universal (CC0 1.0)
    71   Source: https://.com/AyeCode/blockstrap/blob/main/screenshot.png
     75  Source: (AyeCode Ltd created image, copyright and licensing terms owned by AyeCode Ltd)
    7276 
    7377* Image for theme screenshot , social icons, Copyright Font Awesome (Fonticons, Inc.)
  • blockstrap/0.0.10/style.css

    r178431r178616 
    44Author URI: https://ayecode.io
    55Theme URI:
    6 Version: 0.0.9
     6Version: 0.0.10
    77Description: BlockStrap is a very blank starter theme.
    88Tags: full-site-editing, blog, food-and-drink, two-columns, editor-style, block-styles
Note: See TracChangeset for help on using the changeset viewer.