golden hour
/home/doctorbruno/public_html/targetpg.in/wp-content/themes/genesis/lib/shortcodes
⬆️ Go Up
Upload
File/Folder
Size
Actions
footer.php
9.9 KB
Del
OK
post.php
19.72 KB
Del
OK
Edit: 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 ); }
Save