diff --git a/client-mu-plugins/goodbids/views/patterns/template-archive-auction.php b/client-mu-plugins/goodbids/views/patterns/template-archive-auction.php index 309f5c201..580dfe091 100644 --- a/client-mu-plugins/goodbids/views/patterns/template-archive-auction.php +++ b/client-mu-plugins/goodbids/views/patterns/template-archive-auction.php @@ -22,7 +22,7 @@
- + diff --git a/themes/goodbids-main/functions.php b/themes/goodbids-main/functions.php index 2abdb81c6..ef909996c 100644 --- a/themes/goodbids-main/functions.php +++ b/themes/goodbids-main/functions.php @@ -1,31 +1,31 @@ 'arrow-icon-details', - 'label' => __( 'Arrow icon', 'twentytwentyfour' ), + 'label' => __( 'Arrow icon', 'goodbids_main' ), /* * Styles for the custom Arrow icon style of the Details block */ @@ -48,7 +48,7 @@ function twentytwentyfour_block_styles() { 'core/post-terms', array( 'name' => 'pill', - 'label' => __( 'Pill', 'twentytwentyfour' ), + 'label' => __( 'Pill', 'goodbids-main' ), /* * Styles variation for post terms * https://github.com/WordPress/gutenberg/issues/24956 @@ -71,7 +71,7 @@ function twentytwentyfour_block_styles() { 'core/list', array( 'name' => 'checkmark-list', - 'label' => __( 'Checkmark', 'twentytwentyfour' ), + 'label' => __( 'Checkmark', 'goodbids-main' ), /* * Styles for the custom checkmark list block style * https://github.com/WordPress/gutenberg/issues/51480 @@ -90,7 +90,7 @@ function twentytwentyfour_block_styles() { 'core/navigation-link', array( 'name' => 'arrow-link', - 'label' => __( 'With arrow', 'twentytwentyfour' ), + 'label' => __( 'With arrow', 'goodbids-main' ), /* * Styles for the custom arrow nav link block style */ @@ -108,7 +108,7 @@ function twentytwentyfour_block_styles() { 'core/heading', array( 'name' => 'asterisk', - 'label' => __( 'With asterisk', 'twentytwentyfour' ), + 'label' => __( 'With asterisk', 'goodbids-main' ), 'inline_style' => " .is-style-asterisk:before { content: ''; @@ -144,20 +144,20 @@ function twentytwentyfour_block_styles() { } endif; -add_action( 'init', 'twentytwentyfour_block_styles' ); +add_action( 'init', 'goodbids_main_block_styles' ); /** * Enqueue block stylesheets. */ -if ( ! function_exists( 'twentytwentyfour_block_stylesheets' ) ) : +if ( ! function_exists( 'goodbids_main_block_stylesheets' ) ) : /** * Enqueue custom block stylesheets * - * @since Twenty Twenty-Four 1.0 + * @since GoodBids Main 1.0 * @return void */ - function twentytwentyfour_block_stylesheets() { + function goodbids_main_block_stylesheets() { /** * The wp_enqueue_block_style() function allows us to enqueue a stylesheet * for a specific block. These will only get loaded when the block is rendered @@ -169,7 +169,7 @@ function twentytwentyfour_block_stylesheets() { wp_enqueue_block_style( 'core/button', array( - 'handle' => 'twentytwentyfour-button-style-outline', + 'handle' => 'goodbids_main-button-style-outline', 'src' => get_parent_theme_file_uri( 'assets/css/button-outline.css' ), 'ver' => wp_get_theme( get_template() )->get( 'Version' ), 'path' => get_parent_theme_file_path( 'assets/css/button-outline.css' ), @@ -178,20 +178,20 @@ function twentytwentyfour_block_stylesheets() { } endif; -add_action( 'init', 'twentytwentyfour_block_stylesheets' ); +add_action( 'init', 'goodbids_main_block_stylesheets' ); /** * Register pattern categories. */ -if ( ! function_exists( 'twentytwentyfour_pattern_categories' ) ) : +if ( ! function_exists( 'goodbids_main_pattern_categories' ) ) : /** * Register pattern categories * - * @since Twenty Twenty-Four 1.0 + * @since GoodBids Main 1.0 * @return void */ - function twentytwentyfour_pattern_categories() { + function goodbids_main_pattern_categories() { register_block_pattern_category( 'page', @@ -203,7 +203,7 @@ function twentytwentyfour_pattern_categories() { } endif; -add_action( 'init', 'twentytwentyfour_pattern_categories' ); +add_action( 'init', 'goodbids_main_pattern_categories' ); /** * Disable remote block patterns. diff --git a/themes/goodbids-main/parts/footer.html b/themes/goodbids-main/parts/footer.html index c21388e09..1a7f4435c 100644 --- a/themes/goodbids-main/parts/footer.html +++ b/themes/goodbids-main/parts/footer.html @@ -1 +1 @@ - + diff --git a/themes/goodbids-main/parts/post-meta.html b/themes/goodbids-main/parts/post-meta.html index e11eda30e..009c53dc9 100644 --- a/themes/goodbids-main/parts/post-meta.html +++ b/themes/goodbids-main/parts/post-meta.html @@ -1 +1 @@ - + diff --git a/themes/goodbids-main/parts/sidebar.html b/themes/goodbids-main/parts/sidebar.html index 93c36b957..857c38c1d 100644 --- a/themes/goodbids-main/parts/sidebar.html +++ b/themes/goodbids-main/parts/sidebar.html @@ -1 +1 @@ - + diff --git a/themes/goodbids-main/patterns/banner-hero.php b/themes/goodbids-main/patterns/banner-hero.php index 4587ac86a..5c07c513e 100644 --- a/themes/goodbids-main/patterns/banner-hero.php +++ b/themes/goodbids-main/patterns/banner-hero.php @@ -1,7 +1,7 @@ -

+

@@ -22,7 +22,7 @@ -

+

@@ -33,7 +33,7 @@
- +
@@ -48,7 +48,7 @@
- <?php esc_attr_e( 'Building exterior in Toronto, Canada', 'twentytwentyfour' ); ?> + <?php esc_attr_e( 'Building exterior in Toronto, Canada', 'goodbids-main' ); ?>
diff --git a/themes/goodbids-main/patterns/banner-project-description.php b/themes/goodbids-main/patterns/banner-project-description.php index 31a44fc6a..f78a0b736 100644 --- a/themes/goodbids-main/patterns/banner-project-description.php +++ b/themes/goodbids-main/patterns/banner-project-description.php @@ -1,7 +1,7 @@
-

+

@@ -22,7 +22,7 @@
-

+

@@ -37,7 +37,7 @@
- <?php esc_attr_e( 'Hyatt Regency San Francisco, San Francisco, United States', 'twentytwentyfour' ); ?> + <?php esc_attr_e( 'Hyatt Regency San Francisco, San Francisco, United States', 'goodbids-main' ); ?>
diff --git a/themes/goodbids-main/patterns/cta-content-image-on-right.php b/themes/goodbids-main/patterns/cta-content-image-on-right.php index f46ecbc1d..401d339f3 100644 --- a/themes/goodbids-main/patterns/cta-content-image-on-right.php +++ b/themes/goodbids-main/patterns/cta-content-image-on-right.php @@ -1,7 +1,7 @@
-

+

@@ -37,13 +37,13 @@
- +
- +
@@ -55,7 +55,7 @@
- <?php esc_attr_e( 'White abstract geometric artwork from Dresden, Germany', 'twentytwentyfour' ); ?> + <?php esc_attr_e( 'White abstract geometric artwork from Dresden, Germany', 'goodbids-main' ); ?>
diff --git a/themes/goodbids-main/patterns/cta-pricing.php b/themes/goodbids-main/patterns/cta-pricing.php index 45f85f5f0..34e0ca466 100644 --- a/themes/goodbids-main/patterns/cta-pricing.php +++ b/themes/goodbids-main/patterns/cta-pricing.php @@ -1,24 +1,24 @@ - +
-

+

-

+

@@ -33,12 +33,12 @@

- +

-
+
@@ -49,7 +49,7 @@
-

Études Articles per month.', 'Feature for pricing level', 'twentytwentyfour' ) ); ?>

+

Études Articles per month.', 'Feature for pricing level', 'goodbids-main' ) ); ?>

@@ -58,7 +58,7 @@ @@ -68,7 +68,7 @@
@@ -83,7 +83,7 @@
- +
@@ -95,12 +95,12 @@

- +

-
+
@@ -111,7 +111,7 @@
-

Études Articles per month.', 'Feature for pricing level', 'twentytwentyfour' ) ); ?>

+

Études Articles per month.', 'Feature for pricing level', 'goodbids-main' ) ); ?>

@@ -119,7 +119,7 @@ -

+

@@ -127,7 +127,7 @@ -

Études app for iOS and Android.', 'Feature for pricing level', 'twentytwentyfour' ) ); ?>

+

Études app for iOS and Android.', 'Feature for pricing level', 'goodbids-main' ) ); ?>

@@ -141,7 +141,7 @@
- +
@@ -153,12 +153,12 @@

- +

-
+
@@ -169,7 +169,7 @@
-

Études Articles.', 'Feature for pricing level', 'twentytwentyfour' ) ); ?>

+

Études Articles.', 'Feature for pricing level', 'goodbids-main' ) ); ?>

@@ -177,7 +177,7 @@ -

+

@@ -185,7 +185,7 @@ -

Études app for iOS and Android', 'Feature for pricing level', 'twentytwentyfour' ) ); ?>

+

Études app for iOS and Android', 'Feature for pricing level', 'goodbids-main' ) ); ?>

@@ -199,7 +199,7 @@
- +
diff --git a/themes/goodbids-main/patterns/cta-rsvp.php b/themes/goodbids-main/patterns/cta-rsvp.php index 998106589..c25023836 100644 --- a/themes/goodbids-main/patterns/cta-rsvp.php +++ b/themes/goodbids-main/patterns/cta-rsvp.php @@ -1,13 +1,13 @@ - +
@@ -17,20 +17,20 @@
-

+

-

+

- +
@@ -46,7 +46,7 @@
- <?php esc_attr_e( 'A ramp along a curved wall in the Kiasma Museu, Helsinki, Finland', 'twentytwentyfour' ); ?> + <?php esc_attr_e( 'A ramp along a curved wall in the Kiasma Museu, Helsinki, Finland', 'goodbids-main' ); ?>
diff --git a/themes/goodbids-main/patterns/cta-services-image-left.php b/themes/goodbids-main/patterns/cta-services-image-left.php index 87f3c9f3d..0719b90ae 100644 --- a/themes/goodbids-main/patterns/cta-services-image-left.php +++ b/themes/goodbids-main/patterns/cta-services-image-left.php @@ -1,7 +1,7 @@
- <?php esc_attr_e( 'White abstract geometric artwork from Dresden, Germany', 'twentytwentyfour' ); ?> + <?php esc_attr_e( 'White abstract geometric artwork from Dresden, Germany', 'goodbids-main' ); ?>
@@ -24,18 +24,18 @@
-

+

-

+

- +
diff --git a/themes/goodbids-main/patterns/cta-subscribe-centered.php b/themes/goodbids-main/patterns/cta-subscribe-centered.php index b65eac590..be3b36932 100644 --- a/themes/goodbids-main/patterns/cta-subscribe-centered.php +++ b/themes/goodbids-main/patterns/cta-subscribe-centered.php @@ -1,7 +1,7 @@ -

+

-

+

- +
diff --git a/themes/goodbids-main/patterns/footer-centered-logo-nav.php b/themes/goodbids-main/patterns/footer-centered-logo-nav.php index 4370eac6b..507872f8e 100644 --- a/themes/goodbids-main/patterns/footer-centered-logo-nav.php +++ b/themes/goodbids-main/patterns/footer-centered-logo-nav.php @@ -1,7 +1,7 @@ WordPress'; - echo sprintf( + $wordpress_link = 'WordPress'; + printf( /* Translators: Designed with WordPress */ - esc_html__( 'Designed with %1$s', 'twentytwentyfour' ), + esc_html__( 'Designed with %1$s', 'goodbids-main' ), $wordpress_link ); ?> diff --git a/themes/goodbids-main/patterns/footer-colophon-3-col.php b/themes/goodbids-main/patterns/footer-colophon-3-col.php index cfb15db49..e68e46b6c 100644 --- a/themes/goodbids-main/patterns/footer-colophon-3-col.php +++ b/themes/goodbids-main/patterns/footer-colophon-3-col.php @@ -1,7 +1,7 @@
-

+

@@ -35,10 +35,10 @@
-

+

-

+

@@ -53,10 +53,10 @@
-

+

-

/

+

/

@@ -78,7 +78,7 @@
-

+

@@ -87,10 +87,10 @@

WordPress'; - echo sprintf( + $wordpress_link = 'WordPress'; + printf( /* Translators: Designed with WordPress */ - esc_html__( 'Designed with %1$s', 'twentytwentyfour' ), + esc_html__( 'Designed with %1$s', 'goodbids-main' ), $wordpress_link ); ?> diff --git a/themes/goodbids-main/patterns/footer.php b/themes/goodbids-main/patterns/footer.php index b39b3ddf7..550acb816 100644 --- a/themes/goodbids-main/patterns/footer.php +++ b/themes/goodbids-main/patterns/footer.php @@ -1,7 +1,7 @@

-

+

- + @@ -60,13 +60,13 @@
-

+

- + @@ -82,13 +82,13 @@
-

+

- + @@ -113,10 +113,10 @@
- <?php esc_attr_e( 'An empty staircase under an angular roof in Darling Harbour, Sydney, Australia', 'twentytwentyfour' ); ?> + <?php esc_attr_e( 'An empty staircase under an angular roof in Darling Harbour, Sydney, Australia', 'goodbids-main' ); ?>
-

+

@@ -34,7 +34,7 @@
-

+

@@ -45,12 +45,12 @@
-

+

- <?php esc_attr_e( 'Art Gallery of Ontario, Toronto, Canada', 'twentytwentyfour' ); ?> + <?php esc_attr_e( 'Art Gallery of Ontario, Toronto, Canada', 'goodbids-main' ); ?>
diff --git a/themes/goodbids-main/patterns/hidden-404.php b/themes/goodbids-main/patterns/hidden-404.php index d033a13f4..289acbf4b 100644 --- a/themes/goodbids-main/patterns/hidden-404.php +++ b/themes/goodbids-main/patterns/hidden-404.php @@ -1,15 +1,15 @@ -

+

-

+

- + diff --git a/themes/goodbids-main/patterns/hidden-comments.php b/themes/goodbids-main/patterns/hidden-comments.php index bd1066846..827f67cf1 100644 --- a/themes/goodbids-main/patterns/hidden-comments.php +++ b/themes/goodbids-main/patterns/hidden-comments.php @@ -1,7 +1,7 @@ @@ -9,7 +9,7 @@
-

+

diff --git a/themes/goodbids-main/patterns/hidden-no-results.php b/themes/goodbids-main/patterns/hidden-no-results.php index 00bbf9761..e22d22420 100644 --- a/themes/goodbids-main/patterns/hidden-no-results.php +++ b/themes/goodbids-main/patterns/hidden-no-results.php @@ -1,10 +1,10 @@ -

+

diff --git a/themes/goodbids-main/patterns/hidden-portfolio-hero.php b/themes/goodbids-main/patterns/hidden-portfolio-hero.php index 29e6abc9f..d3e25740f 100644 --- a/themes/goodbids-main/patterns/hidden-portfolio-hero.php +++ b/themes/goodbids-main/patterns/hidden-portfolio-hero.php @@ -1,7 +1,7 @@ diff --git a/themes/goodbids-main/patterns/hidden-post-meta.php b/themes/goodbids-main/patterns/hidden-post-meta.php index add4a1c8f..650ae9474 100644 --- a/themes/goodbids-main/patterns/hidden-post-meta.php +++ b/themes/goodbids-main/patterns/hidden-post-meta.php @@ -1,7 +1,7 @@ @@ -17,12 +17,12 @@ -

+

- +
diff --git a/themes/goodbids-main/patterns/hidden-post-navigation.php b/themes/goodbids-main/patterns/hidden-post-navigation.php index be2dcb28b..4f9b4d6f1 100644 --- a/themes/goodbids-main/patterns/hidden-post-navigation.php +++ b/themes/goodbids-main/patterns/hidden-post-navigation.php @@ -1,14 +1,14 @@ - -