updated theme GeneratePress
version 3.3.0
This commit is contained in:
@ -156,8 +156,8 @@ function generate_set_comment_form_defaults( $defaults ) {
|
||||
esc_html__( 'Comment', 'generatepress' )
|
||||
);
|
||||
|
||||
$defaults['comment_notes_before'] = null;
|
||||
$defaults['comment_notes_after'] = null;
|
||||
$defaults['comment_notes_before'] = '';
|
||||
$defaults['comment_notes_after'] = '';
|
||||
$defaults['id_form'] = 'commentform';
|
||||
$defaults['id_submit'] = 'submit';
|
||||
$defaults['title_reply'] = apply_filters( 'generate_leave_comment', __( 'Leave a Comment', 'generatepress' ) );
|
||||
|
@ -115,32 +115,21 @@ if ( ! function_exists( 'generate_construct_logo' ) ) {
|
||||
)
|
||||
);
|
||||
|
||||
$data = get_theme_mod( 'custom_logo' ) && ( '' !== $retina_logo_url || generate_is_using_flexbox() )
|
||||
? wp_get_attachment_metadata( get_theme_mod( 'custom_logo' ) )
|
||||
: false;
|
||||
|
||||
if ( '' !== $retina_logo_url ) {
|
||||
$attr['srcset'] = $logo_url . ' 1x, ' . $retina_logo_url . ' 2x';
|
||||
}
|
||||
|
||||
// Add dimensions to image if retina is set. This fixes a container width bug in Firefox.
|
||||
if ( function_exists( 'the_custom_logo' ) && get_theme_mod( 'custom_logo' ) ) {
|
||||
$data = wp_get_attachment_metadata( get_theme_mod( 'custom_logo' ) );
|
||||
|
||||
if ( ! empty( $data ) ) {
|
||||
$attr['width'] = $data['width'];
|
||||
$attr['height'] = $data['height'];
|
||||
}
|
||||
if ( $data ) {
|
||||
if ( isset( $data['width'] ) ) {
|
||||
$attr['width'] = $data['width'];
|
||||
}
|
||||
} elseif ( generate_is_using_flexbox() ) {
|
||||
// Add this to flexbox version only until we can verify it won't conflict with existing installs.
|
||||
if ( function_exists( 'the_custom_logo' ) && get_theme_mod( 'custom_logo' ) ) {
|
||||
$data = wp_get_attachment_metadata( get_theme_mod( 'custom_logo' ) );
|
||||
|
||||
if ( ! empty( $data ) ) {
|
||||
if ( isset( $data['width'] ) ) {
|
||||
$attr['width'] = $data['width'];
|
||||
}
|
||||
|
||||
if ( isset( $data['height'] ) ) {
|
||||
$attr['height'] = $data['height'];
|
||||
}
|
||||
}
|
||||
if ( isset( $data['height'] ) ) {
|
||||
$attr['height'] = $data['height'];
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -396,6 +396,10 @@ function generate_get_footer_entry_meta_items() {
|
||||
$items[] = 'post-navigation';
|
||||
}
|
||||
|
||||
if ( ! is_singular() ) {
|
||||
$items = array_diff( (array) $items, array( 'post-navigation' ) );
|
||||
}
|
||||
|
||||
// Disable post meta items based on their individual filters.
|
||||
$items = generate_disable_post_meta_items( $items );
|
||||
|
||||
|
111
wp-content/themes/generatepress/inc/structure/search-modal.php
Normal file
111
wp-content/themes/generatepress/inc/structure/search-modal.php
Normal file
@ -0,0 +1,111 @@
|
||||
<?php
|
||||
/**
|
||||
* Post meta elements.
|
||||
*
|
||||
* @package GeneratePress
|
||||
*/
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly.
|
||||
}
|
||||
|
||||
add_action( 'wp_footer', 'generate_do_search_modal' );
|
||||
/**
|
||||
* Create the search modal HTML.
|
||||
*/
|
||||
function generate_do_search_modal() {
|
||||
if ( ! generate_get_option( 'nav_search_modal' ) ) {
|
||||
return;
|
||||
}
|
||||
?>
|
||||
<div class="gp-modal gp-search-modal" id="gp-search">
|
||||
<div class="gp-modal__overlay" tabindex="-1" data-gpmodal-close>
|
||||
<div class="gp-modal__container">
|
||||
<?php do_action( 'generate_inside_search_modal' ); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
|
||||
add_action( 'generate_menu_bar_items', 'generate_do_search_modal_trigger' );
|
||||
/**
|
||||
* Create the search modal trigger.
|
||||
*/
|
||||
function generate_do_search_modal_trigger() {
|
||||
if ( ! generate_get_option( 'nav_search_modal' ) ) {
|
||||
return;
|
||||
}
|
||||
?>
|
||||
<span class="menu-bar-item">
|
||||
<a href="#" role="button" aria-label="<?php _e( 'Open search', 'generatepress' ); ?>" data-gpmodal-trigger="gp-search"><?php echo generate_get_svg_icon( 'search', true ); // phpcs:ignore -- Escaped in function. ?></a>
|
||||
</span>
|
||||
<?php
|
||||
}
|
||||
|
||||
add_filter( 'generate_enable_modal_script', 'generate_enable_search_modal' );
|
||||
/**
|
||||
* Enable the search modal.
|
||||
*/
|
||||
function generate_enable_search_modal() {
|
||||
return generate_get_option( 'nav_search_modal' );
|
||||
}
|
||||
|
||||
add_action( 'generate_base_css', 'generate_do_search_modal_css' );
|
||||
/**
|
||||
* Do the modal CSS.
|
||||
*
|
||||
* @param Object $css The existing CSS object.
|
||||
*/
|
||||
function generate_do_search_modal_css( $css ) {
|
||||
if ( ! generate_get_option( 'nav_search_modal' ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
$css->set_selector( '.search-modal-fields' );
|
||||
$css->add_property( 'display', 'flex' );
|
||||
|
||||
$css->set_selector( '.gp-search-modal .gp-modal__overlay' );
|
||||
$css->add_property( 'align-items', 'flex-start' );
|
||||
$css->add_property( 'padding-top', '25vh' );
|
||||
$css->add_property( 'background', 'var(--gp-search-modal-overlay-bg-color)' );
|
||||
|
||||
$css->set_selector( '.search-modal-form' );
|
||||
$css->add_property( 'width', '500px' );
|
||||
$css->add_property( 'max-width', '100%' );
|
||||
$css->add_property( 'background-color', 'var(--gp-search-modal-bg-color)' );
|
||||
$css->add_property( 'color', 'var(--gp-search-modal-text-color)' );
|
||||
|
||||
$css->set_selector( '.search-modal-form .search-field, .search-modal-form .search-field:focus' );
|
||||
$css->add_property( 'width', '100%' );
|
||||
$css->add_property( 'height', '60px' );
|
||||
$css->add_property( 'background-color', 'transparent' );
|
||||
$css->add_property( 'border', 0 );
|
||||
$css->add_property( 'appearance', 'none' );
|
||||
$css->add_property( 'color', 'currentColor' );
|
||||
|
||||
$css->set_selector( '.search-modal-fields button, .search-modal-fields button:active, .search-modal-fields button:focus, .search-modal-fields button:hover' );
|
||||
$css->add_property( 'background-color', 'transparent' );
|
||||
$css->add_property( 'border', 0 );
|
||||
$css->add_property( 'color', 'currentColor' );
|
||||
$css->add_property( 'width', '60px' );
|
||||
|
||||
return $css;
|
||||
}
|
||||
|
||||
add_action( 'generate_inside_search_modal', 'generate_do_search_fields' );
|
||||
/**
|
||||
* Add our search fields to the modal.
|
||||
*/
|
||||
function generate_do_search_fields() {
|
||||
?>
|
||||
<form role="search" method="get" class="search-modal-form" action="<?php echo esc_url( home_url( '/' ) ); ?>">
|
||||
<label class="screen-reader-text"><?php echo apply_filters( 'generate_search_label', _x( 'Search for:', 'label', 'generatepress' ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></label>
|
||||
<div class="search-modal-fields">
|
||||
<input type="search" class="search-field" placeholder="<?php echo esc_attr( apply_filters( 'generate_search_placeholder', _x( 'Search …', 'placeholder', 'generatepress' ) ) ); ?>" value="<?php echo get_search_query(); ?>" name="s" />
|
||||
<button aria-label="<?php echo esc_attr( apply_filters( 'generate_search_button', _x( 'Search', 'submit button', 'generatepress' ) ) ); ?>"><?php echo generate_get_svg_icon( 'search' ); // phpcs:ignore -- Escaped in function. ?></button>
|
||||
</div>
|
||||
<?php do_action( 'generate_inside_search_modal_form' ); ?>
|
||||
</form>
|
||||
<?php
|
||||
}
|
Reference in New Issue
Block a user