Skip to content

Commit

Permalink
2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
webmandesign committed Nov 13, 2023
1 parent 3a4a663 commit e772df6
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 10 deletions.
4 changes: 4 additions & 0 deletions assets/images/svg/social-icons.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Receptar Changelog

## 2.0.1, 20231113

### Updated
- Twitter/X icon

### Fixed
- Site title link to homepage on paged blog front page

### File updates
changelog.md
functions.php
readme.txt
style.css
assets/images/svg/social-icons.svg
inc/setup.php
inc/lib/core.php


## 2.0.0, 20230105

### Added
Expand Down
8 changes: 4 additions & 4 deletions inc/lib/core.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @copyright 2015 WebMan - Oliver Juhas
*
* @since 1.0.0
* @version 2.0.0
* @version 2.0.1
*
* CONTENT:
* - 10) Actions and filters
Expand Down Expand Up @@ -56,7 +56,7 @@
* Logo
*
* @since 1.0
* @version 1.4.1
* @version 2.0.1
*/
if ( ! function_exists( 'receptar_logo' ) ) {
function receptar_logo( $container_class = 'site-branding' ) {
Expand Down Expand Up @@ -123,7 +123,7 @@ function receptar_logo( $container_class = 'site-branding' ) {
$output[1] = '<div class="' . esc_attr( trim( $args['container'] ) ) . '">';
}

if ( is_front_page() ) {
if ( is_front_page() && ! is_paged() ) {
$output[10] = '<h1 id="site-title" class="' . esc_attr( $logo_class ) . '">';
} else {
$output[10] = '<h2 class="screen-reader-text">' . $document_title . '</h2>'; // To provide BODY heading on subpages
Expand All @@ -136,7 +136,7 @@ function receptar_logo( $container_class = 'site-branding' ) {
$output[30] = $args['logo_image'] . '<span class="screen-reader-text">' . $blog_info['name'] . '</span>';
}

if ( is_front_page() ) {
if ( is_front_page() && ! is_paged() ) {
$output[40] = '</h1>';
} else {
$output[40] = '</a>';
Expand Down
6 changes: 3 additions & 3 deletions inc/setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @copyright 2015 WebMan - Oliver Juhas
*
* @since 1.0.0
* @version 2.0.0
* @version 2.0.1
*
* CONTENT:
* - 10) Actions and filters
Expand Down Expand Up @@ -1000,7 +1000,7 @@ function receptar_menu_social() {
* Social links supported icons
*
* @since 1.6.0
* @version 1.9.0
* @version 2.0.1
*/
function receptar_social_links_icons() {

Expand Down Expand Up @@ -1046,7 +1046,7 @@ function receptar_social_links_icons() {
'tripadvisor.' => 'tripadvisor',
'tumblr.com' => 'tumblr',
'twitch.tv' => 'twitch',
'twitter.com' => 'twitter',
'twitter.com' => 'x',
'vimeo.com' => 'vimeo',
'vine.co' => 'vine',
'vk.com' => 'vk',
Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
=== Receptar ===
Contributors: webmandesign
Requires at least: 4.8
Tested up to: 6.1
Tested up to: 6.4
Requires PHP: 5.6
License: GPL-3.0-or-later
License URI: https://www.gnu.org/licenses/gpl-3.0-standalone.html
Expand Down
4 changes: 2 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Theme Name: Receptar
Theme URI: https://www.webmandesign.eu/portfolio/receptar-wordpress-theme/
Author: WebMan Design
Author URI: https://www.webmandesign.eu/
Version: 2.0.0
Version: 2.0.1
Text Domain: receptar
Domain Path: /languages
License: GNU General Public License v3
Expand All @@ -12,7 +12,7 @@ Description: Receptar is simple, modern, responsive, customizable, stylish blog
Tags: two-columns, four-columns, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-image-header, featured-images, flexible-header, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready, grid-layout, blog, food-and-drink, photography
Requires at least: 4.8
Tested up to: 6.1
Tested up to: 6.4
Requires PHP: 5.6
GitHub Theme URI: webmandesign/receptar
Expand Down

0 comments on commit e772df6

Please sign in to comment.