PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
| Dir : /home/ngamzghe/moltrazi.com/wp-content__e01594c/themes/genesis/lib/shortcodes/ |
| Server: Linux server1.ngambekcore.com 4.18.0-553.51.1.el8_10.x86_64 #1 SMP Wed Apr 30 04:00:07 EDT 2025 x86_64 IP: 159.198.77.92 |
| Dir : /home/ngamzghe/moltrazi.com/wp-content__e01594c/themes/genesis/lib/shortcodes/footer.php |
<?php
/**
* Genesis Framework.
*
* WARNING: This file is part of the core Genesis Framework. DO NOT edit this file under any circumstances.
* Please do all modifications in the form of a child theme.
*
* @package Genesis\Shortcodes
* @author StudioPress
* @license GPL-2.0-or-later
* @link https://my.studiopress.com/themes/genesis/
*/
add_shortcode( 'footer_copyright', 'genesis_footer_copyright_shortcode' );
/**
* Adds the visual copyright notice.
*
* Supported shortcode attributes are:
* after (output after notice, default is empty string),
* before (output before notice, default is empty string),
* copyright (copyright notice, default is copyright character like (c) ),
* first(year copyright first applies, default is empty string).
*
* If the 'first' attribute is not empty, and not equal to the current year, then
* output will be formatted as first-current year (e.g. 1998-2020).
* Otherwise, output is just given as the current year.
*
* Output passes through `genesis_footer_copyright_shortcode` filter before returning.
*
* @since 1.1.0
*
* @param array|string $atts Shortcode attributes. Empty string if no attributes.
* @return string Output for `footer_copyright` shortcode.
*/
function genesis_footer_copyright_shortcode( $atts ) {
$defaults = [
'after' => '',
'before' => '',
'copyright' => '©',
'first' => '',
];
$atts = shortcode_atts( $defaults, $atts, 'footer_copyright' );
$atts = genesis_sanitize_shortcode_attributes( $atts, [ 'before', 'after', 'copyright', 'first' ] );
$output = $atts['before'] . $atts['copyright'] . ' ';
if ( '' !== $atts['first'] && gmdate( 'Y' ) !== $atts['first'] ) {
$output .= $atts['first'] . '–';
}
$output .= gmdate( 'Y' ) . $atts['after'];
return apply_filters( 'genesis_footer_copyright_shortcode', $output, $atts );
}
add_shortcode( 'footer_childtheme_link', 'genesis_footer_childtheme_link_shortcode' );
/**
* Adds the link to the child theme, if the details are defined.
*
* Supported shortcode attributes are:
* after (output after link, default is empty string),
* before (output before link, default is a string with a middot character).
*
* Output passes through `genesis_footer_childtheme_link_shortcode` filter before returning.
*
* @since 1.1.0
*
* @param array|string $atts Shortcode attributes. Empty string if no attributes.
* @return null|string Return empty string early if not a child theme, or if child theme doesn't have a name or URI.
* Otherwise return output for `footer_childtheme_link` shortcode.
*/
function genesis_footer_childtheme_link_shortcode( $atts ) {
$name = wp_get_theme()->get( 'Name' );
$url = wp_get_theme()->get( 'ThemeURI' );
if ( ! $name ) {
$name = defined( 'CHILD_THEME_NAME' ) && CHILD_THEME_NAME ? CHILD_THEME_NAME : '';
}
if ( ! $url ) {
$url = defined( 'CHILD_THEME_URL' ) && CHILD_THEME_URL ? CHILD_THEME_URL : '';
}
if ( ! $name || ! $url || ! is_child_theme() ) {
return null;
}
$defaults = [
'after' => '',
'before' => '·',
];
$atts = shortcode_atts( $defaults, $atts, 'footer_childtheme_link' );
$atts = genesis_sanitize_shortcode_attributes( $atts, [ 'before', 'after' ] );
$output = sprintf( '%s<a href="%s">%s</a>%s', $atts['before'], esc_url( $url ), esc_html( $name ), $atts['after'] );
return apply_filters( 'genesis_footer_childtheme_link_shortcode', $output, $atts );
}
add_shortcode( 'footer_genesis_link', 'genesis_footer_genesis_link_shortcode' );
/**
* Adds link to the Genesis page on the StudioPress website.
*
* Supported shortcode attributes are:
* after (output after link, default is empty string),
* before (output before link, default is empty string).
*
* Output passes through `genesis_footer_genesis_link_shortcode` filter before returning.
*
* @since 1.1.0
*
* @param array|string $atts Shortcode attributes. Empty string if no attributes.
* @return string Output for `footer_genesis_link` shortcode.
*/
function genesis_footer_genesis_link_shortcode( $atts ) {
$defaults = [
'after' => '',
'before' => '',
'url' => 'https://my.studiopress.com/themes/genesis/',
];
$atts = shortcode_atts( $defaults, $atts, 'footer_genesis_link' );
$atts = genesis_sanitize_shortcode_attributes( $atts, [ 'before', 'after' ] );
$output = $atts['before'] . '<a href="' . esc_url( $atts['url'] ) . '">Genesis Framework</a>' . $atts['after'];
return apply_filters( 'genesis_footer_genesis_link_shortcode', $output, $atts );
}
add_shortcode( 'footer_studiopress_link', 'genesis_footer_studiopress_link_shortcode' );
/**
* Adds link to the StudioPress home page.
*
* Supported shortcode attributes are:
* after (output after link, default is empty string),
* before (output before link, default is 'by ').
*
* Output passes through `genesis_footer_studiopress_link_shortcode` filter before returning.
*
* @since 1.2.0
*
* @param array|string $atts Shortcode attributes. Empty string if no attributes.
* @return string Output for `footer_studiopress_link` shortcode.
*/
function genesis_footer_studiopress_link_shortcode( $atts ) {
$defaults = [
'after' => '',
'before' => __( 'by', 'genesis' ),
];
$atts = shortcode_atts( $defaults, $atts, 'footer_studiopress_link' );
$atts = genesis_sanitize_shortcode_attributes( $atts, [ 'before', 'after' ] );
$output = $atts['before'] . ' <a href="https://www.studiopress.com/">StudioPress</a>' . $atts['after'];
return apply_filters( 'genesis_footer_studiopress_link_shortcode', $output, $atts );
}
add_shortcode( 'footer_wordpress_link', 'genesis_footer_wordpress_link_shortcode' );
/**
* Adds link to WordPress - https://wordpress.org/ .
*
* Supported shortcode attributes are:
* after (output after link, default is empty string),
* before (output before link, default is empty string).
*
* Output passes through `genesis_footer_wordpress_link_shortcode` filter before returning.
*
* @since 1.1.0
*
* @param array|string $atts Shortcode attributes. Empty string if no attributes.
* @return string Output for `footer_wordpress_link` shortcode.
*/
function genesis_footer_wordpress_link_shortcode( $atts ) {
$defaults = [
'after' => '',
'before' => '',
];
$atts = shortcode_atts( $defaults, $atts, 'footer_wordpress_link' );
$atts = genesis_sanitize_shortcode_attributes( $atts, [ 'before', 'after' ] );
$output = sprintf( '%s<a href="%s">%s</a>%s', $atts['before'], 'https://wordpress.org/', 'WordPress', $atts['after'] );
return apply_filters( 'genesis_footer_wordpress_link_shortcode', $output, $atts );
}
add_shortcode( 'footer_site_title', 'genesis_footer_site_title_shortcode' );
/**
* Produces the site title.
*
* Supported shortcode attributes are:
* after (output after link, default is empty string),
* before (output before link, default is empty string).
*
* Output passes through `genesis_footer_site_title_shortcode` filter before returning.
*
* @since 2.3.0
*
* @param array|string $atts Shortcode attributes. Empty string if no attributes.
* @return string Output for `footer_site_title` shortcode.
*/
function genesis_footer_site_title_shortcode( $atts ) {
$defaults = [
'after' => '',
'before' => '',
];
$atts = shortcode_atts( $defaults, $atts, 'footer_site_title' );
$atts = genesis_sanitize_shortcode_attributes( $atts, [ 'before', 'after' ] );
$output = $atts['before'] . get_bloginfo( 'name' ) . $atts['after'];
return apply_filters( 'genesis_footer_site_title_shortcode', $output, $atts );
}
add_shortcode( 'footer_home_link', 'genesis_footer_home_link_shortcode' );
/**
* Produces a link to the home URL.
*
* Supported shortcode attributes are:
* after (output after link, default is empty string),
* before (output before link, default is empty string),
* text (link text, default is site title).
*
* Output passes through `genesis_footer_home_link_shortcode` filter before returning.
*
* @since 2.3.0
*
* @param array|string $atts Shortcode attributes. Empty string if no attributes.
* @return string Output for `footer_home_link` shortcode.
*/
function genesis_footer_home_link_shortcode( $atts ) {
$defaults = [
'after' => '',
'before' => '',
'text' => get_bloginfo( 'name' ),
];
$atts = shortcode_atts( $defaults, $atts, 'footer_home_link' );
$atts = genesis_sanitize_shortcode_attributes( $atts, [ 'before', 'after', 'text' ] );
$output = sprintf( '%s<a href="%s">%s</a>%s', $atts['before'], home_url(), $atts['text'], $atts['after'] );
return apply_filters( 'genesis_footer_home_link_shortcode', $output, $atts );
}
add_shortcode( 'footer_loginout', 'genesis_footer_loginout_shortcode' );
/**
* Adds admin login / logout link.
*
* Support shortcode attributes are:
* after (output after link, default is empty string),
* before (output before link, default is empty string),
* redirect (path to redirect to on login, default is empty string).
*
* Output passes through `genesis_footer_loginout_shortcode` filter before returning.
*
* @since 1.1.0
*
* @param array|string $atts Shortcode attributes. Empty string if no attributes.
* @return string Output for `footer_loginout` shortcode.
*/
function genesis_footer_loginout_shortcode( $atts ) {
$defaults = [
'after' => '',
'before' => '',
'redirect' => '',
];
$atts = shortcode_atts( $defaults, $atts, 'footer_loginout' );
$atts = genesis_sanitize_shortcode_attributes( $atts, [ 'before', 'after' ] );
if ( ! is_user_logged_in() ) {
$link = '<a href="' . esc_url( wp_login_url( $atts['redirect'] ) ) . '">' . __( 'Log in', 'genesis' ) . '</a>';
} else {
$link = '<a href="' . esc_url( wp_logout_url( $atts['redirect'] ) ) . '">' . __( 'Log out', 'genesis' ) . '</a>';
}
$output = $atts['before'] . apply_filters( 'loginout', $link ) . $atts['after']; // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound -- core WP hook.
return apply_filters( 'genesis_footer_loginout_shortcode', $output, $atts );
}