Skip to content

Commit 3a3965b

Browse files
committed
fix namespace example
1 parent 82ad4ec commit 3a3965b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

components/parts/common/breadcrumb.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
}
55
?>
66

7-
<nav class="breadcrumb" role="navigation" aria-label="<?php echo esc_attr( 'Breadcrumb', 'beapi-frontend-framework' ); ?>">
7+
<nav class="breadcrumb" role="navigation" aria-label="<?php esc_attr_e( 'Breadcrumb', 'beapi-frontend-framework' ); ?>">
88
<div class="container">
99
<?php yoast_breadcrumb( '<div class="breadcrumb__inner">', '</div>' ); ?>
1010
</div>

inc/Helpers/Formatting/Term.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
use function BEA\Theme\Framework\Helpers\Formatting\Escape\escape_content_value;
55
/**
6-
* @usage Fncuma\Theme\FncumaUas\Helpers\Formatting\Term\get_terms_name( $terms );
6+
* @usage BEA\Theme\Framework\Helpers\Formatting\Term\get_terms_name( $terms );
77
*
88
* @param \WP_Term[] $terms list of terms
99
*
@@ -31,7 +31,7 @@ function get_terms_name( array $terms ): array {
3131
*
3232
* @return string
3333
*/
34-
function get_terms_list( array $terms , array $settings = [] ): string {
34+
function get_terms_list( array $terms, array $settings = [] ): string {
3535
$attributes = apply_filters( 'bea_theme_framework_term_list_attributes', $terms, $settings );
3636
$terms = get_terms_name( $terms );
3737

0 commit comments

Comments
 (0)