Commit f8c5cf30 authored by Simonas's avatar Simonas

Separated filters, plugin update etc.

parent 5a95ca66
......@@ -181,14 +181,16 @@ class PLL_Admin extends PLL_Admin_Base {
*
* @since 2.6
*
* @param bool $is_block_editor Whether to use the block editor or not
* @param bool $is_block_editor Whether to use the block editor or not.
* @return bool
*/
public function _maybe_load_sync_post( $is_block_editor ) {
if ( class_exists( 'PLL_Sync_Post_REST' ) && pll_use_block_editor_plugin() && $is_block_editor ) {
$this->sync_post = new PLL_Sync_Post_REST( $this );
} elseif ( class_exists( 'PLL_Sync_Post' ) ) {
$this->sync_post = new PLL_Sync_Post( $this );
if ( ! isset( $this->sync_post ) ) { // Make sure to instantiate the class only once, as the function may be called from a filter.
if ( class_exists( 'PLL_Sync_Post_REST' ) && pll_use_block_editor_plugin() && $is_block_editor ) {
$this->sync_post = new PLL_Sync_Post_REST( $this );
} elseif ( class_exists( 'PLL_Sync_Post' ) ) {
$this->sync_post = new PLL_Sync_Post( $this );
}
}
return $is_block_editor;
......
......@@ -145,6 +145,15 @@ function pll_get_requested_url() {
return set_url_scheme( esc_url_raw( wp_unslash( 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ) ) );
}
/*
* In WP CLI context, few developers define superglobals in wp-config.php
* as proposed in https://make.wordpress.org/cli/handbook/common-issues/#php-notice-undefined-index-on-_server-superglobal
* So let's return the unfiltered home url to avoid a bunch of notices.
*/
if ( defined( 'WP_CLI' ) && WP_CLI ) {
return get_option( 'home' );
}
if ( WP_DEBUG ) {
// phpcs:ignore WordPress.PHP.DevelopmentFunctions
trigger_error( '$_SERVER[\'HTTP_HOST\'] or $_SERVER[\'REQUEST_URI\'] are required but not set.' );
......
......@@ -133,8 +133,7 @@ class PLL_Plugins_Compat {
*/
public function after_setup_theme() {
// Advanced Custom Fields Pro
// The function acf_get_value() is not defined in ACF 4
if ( class_exists( 'acf' ) && function_exists( 'acf_get_value' ) && class_exists( 'PLL_ACF' ) ) {
if ( defined( 'ACF_VERSION' ) && version_compare( ACF_VERSION, '5.7.11', '>=' ) && class_exists( 'PLL_ACF' ) ) {
add_action( 'init', array( $this->acf = new PLL_ACF(), 'init' ) );
}
}
......
......@@ -3,7 +3,7 @@
/**
Plugin Name: Polylang
Plugin URI: https://polylang.pro
Version: 2.6.4
Version: 2.6.5
Author: WP SYNTEX
Author uri: https://polylang.pro
Description: Adds multilingual capability to WordPress
......@@ -51,7 +51,7 @@ if ( defined( 'POLYLANG_BASENAME' ) ) {
}
} else {
// Go on loading the plugin
define( 'POLYLANG_VERSION', '2.6.4' );
define( 'POLYLANG_VERSION', '2.6.5' );
define( 'PLL_MIN_WP_VERSION', '4.7' );
define( 'POLYLANG_FILE', __FILE__ ); // this file
......
......@@ -4,7 +4,7 @@ Donate link: https://polylang.pro
Tags: multilingual, bilingual, translate, translation, language, multilanguage, international, localization
Requires at least: 4.7
Tested up to: 5.2
Stable tag: 2.6.4
Stable tag: 2.6.5
License: GPLv3 or later
Making WordPress multilingual
......@@ -76,6 +76,14 @@ Don't hesitate to [give your feedback](http://wordpress.org/support/view/plugin-
== Changelog ==
= 2.6.5 (2019-10-09) =
* Pro: Require ACF 5.7.11+ to activate the compatibility to avoid fatal errors with older versions
* Pro: Avoid translating empty front slug (could cause a wrong redirect to /wp-admin)
* Pro: Fix filter wp_unique_term_slug not always correctly applied.
* Pro: Fix a conflict with Divi causing post synchronization buttons to be displayed multiple times
* Avoid notice in WP CLI context
= 2.6.4 (2019-08-27) =
* Pro: Fix a conflict preventing meta synchronization when ACF is active
......
......@@ -32,11 +32,15 @@
}
.l-content--heading { display: block; padding-top: 20px; padding-bottom: 15px;
.l-content--heading { display: block; padding-top: 10px; padding-bottom: 15px;
@media (--min--medium) {
padding-left: 320px; padding-top: 40px; padding-bottom: 25px;
}
h1 { margin: 0; padding: 0; color: #2A3644; font-size: 25px; font-weight: 500; line-height: 29px; }
h1 { margin: 0; padding: 0; color: #2A3644; font-weight: 500; font-size: 18px; line-height: 26px;text-align: center;
@media (--min--medium) {
font-size: 25px; line-height: 29px; text-align: right;
}
}
}
.l-content--main { width: 100%; flex: 1 1 auto; max-width: 1070px; padding: 35px 20px 90px; margin: 0 auto;
......
......@@ -52,6 +52,10 @@
&:hover { border-color: var(--color--green-darker); background-color: var(--color--green-darker); color: #fff; }
}
.c-btn--filter { color: #2A3644; font-size: 15px; line-height: 26px; text-align: center; background: #fff; border-radius: 3px; padding: 6px 15px 6px 12px; }
.c-btn--filter { color: #2A3644; font-size: 15px; line-height: 26px; text-align: center; background: #fff; border-radius: 3px; padding: 6px 10px 6px 7px;
@media (--min--xx-small) {
padding: 6px 15px 6px 12px;
}
}
/* critical:end */
......@@ -37,7 +37,7 @@
.c-contact-landing-3--aside { padding: 10px 20px; margin: 0 -10px 0 -25px; background: linear-gradient(90deg, #C5F3EC 0%, #E4FAF7 100%);
@media (--min--medium) {
margin: 0; padding: 10px;
width: 549px; margin: 40px 0 0 40px; padding: 10px; border-radius: 33px; overflow: hidden;
}
svg { float: left; margin-right: 25px;
@media (--max--medium) {
......@@ -49,7 +49,4 @@
max-width: 300px; padding: 5px 0 0; text-align: left;
}
}
@media (--min--medium) {
width: 549px; margin-left: 40px; border-radius: 33px; overflow: hidden;
}
}
......@@ -37,7 +37,7 @@
.c-contact-landing-4--aside { padding: 10px 20px; margin: 0 -10px 0 -25px; background: linear-gradient(90deg, #C5F3EC 0%, #E4FAF7 100%);
@media (--min--medium) {
margin: 0; padding: 10px;
width: 549px; margin: 40px 0 0 40px; padding: 10px; border-radius: 33px; overflow: hidden;
}
svg { float: left; margin-right: 25px;
@media (--max--medium) {
......@@ -49,7 +49,4 @@
max-width: 300px; padding: 5px 0 0; text-align: left;
}
}
@media (--min--medium) {
width: 549px; margin-left: 40px; border-radius: 33px; overflow: hidden;
}
}
......@@ -17,9 +17,17 @@
.c-ico--address { float: left; margin: 3px 12px 0 3px; }
.c-ico--filter { float: left; margin: 3px 15px 0 3px; }
.c-ico--city { float: left; margin: 3px 15px 0 3px; }
.c-ico--filter { float: left; margin: 3px 8px 0 3px;
@media (--min--xx-small) {
margin: 3px 15px 0 3px;
}
}
.c-ico--city { float: left; margin: 3px 8px 0 3px;
@media (--min--xx-small) {
margin: 3px 15px 0 3px;
}
}
.c-ico--city--job-section { float: left; margin: 0 13px 0 0; }
......@@ -46,6 +54,9 @@
.c-ico--transport { float: left; margin: 2px 20px 0 0; }
.c-ico--attachment { margin: -2px 4px -1px 0; opacity: 0.5; }
.c-ico--medical { float: left; margin: 1px 21px 0 0; }
/* critical:end */
......@@ -18,8 +18,8 @@
.c-search--col-keyword { flex: 1 1 auto; border-radius: 3px 0 0 3px; }
.c-search--btn-text { display: none; }
.c-btn--search-small { min-width: 35px; margin: 5px; padding: 9px 7px 8px 8px; }
.c-search--input { height: 45px; padding: 0 0 0 15px; }
.c-search--col ul { top: 45px; }
.c-search--input { height: 49px; padding: 0 0 0 15px; }
.c-search--col ul { top: 45px; border-top: 3px solid #fff; }
.c-ico--area { display: none; }
}
}
......@@ -60,7 +60,10 @@
.c-search--keyword { }
.c-search--filters { padding: 10px 20px; display: flex; justify-content: space-between;
.c-search--filters { padding: 10px; display: flex; justify-content: space-between;
@media (--min--xx-small) {
padding: 10px 20px;
}
@media (--min--medium) {
display: none;
}
......
This diff is collapsed.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -154,7 +154,7 @@
<?php
endif;
?>
<script src="/wp-content/themes/biuro/js/main.min.js" async></script>
<script src="/wp-content/themes/biuro/js/main-4d30a78f.min.js" async></script>
<script src="/wp-content/themes/biuro/js/vendor/modernizr-custom.js" async></script>
<?php
......
......@@ -31,7 +31,7 @@
<link rel="preload" as="font" type="font/woff2" href="/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-500.woff2" crossorigin="anonymous" >
<link rel="preload" as="font" type="font/woff2" href="/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-regular.woff2" crossorigin="anonymous" >
<style><?php include 'css/core.min.css'; ?></style>
<style><?php include 'css/core-f2263db4eb.min.css'; ?></style>
<script>
document.documentElement.classList.replace('no-js', 'js');
......@@ -40,13 +40,13 @@
<link rel="preload" as="font" type="font/woff2" href="/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-300.woff2" crossorigin="anonymous" >
<link rel="preload" as="font" type="font/woff2" href="/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-700.woff2" crossorigin="anonymous" >
<link rel="preload" href="/wp-content/themes/biuro/css/main.min.css" as="style" onload="this.rel='stylesheet'">
<link rel="preload" href="/wp-content/themes/biuro/css/main-7c323da9f9.min.css" as="style" onload="this.rel='stylesheet'">
<link rel="preconnect" href="https://www.gstatic.com">
<link rel="preconnect" href="https://fonts.gstatic.com">
<noscript>
<link rel="stylesheet" href="/wp-content/themes/biuro/css/main.min.css">
<link rel="stylesheet" href="/wp-content/themes/biuro/css/main-7c323da9f9.min.css">
</noscript>
<?php wp_head(); ?>
......
......@@ -31,7 +31,7 @@
<link rel="preload" as="font" type="font/woff2" href="/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-500.woff2" crossorigin="anonymous" >
<link rel="preload" as="font" type="font/woff2" href="/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-regular.woff2" crossorigin="anonymous" >
<style><?php include 'css/core.min.css'; ?></style>
<style><?php include 'css/core-f2263db4eb.min.css'; ?></style>
<script>
document.documentElement.classList.replace('no-js', 'js');
......@@ -40,13 +40,13 @@
<link rel="preload" as="font" type="font/woff2" href="/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-300.woff2" crossorigin="anonymous" >
<link rel="preload" as="font" type="font/woff2" href="/wp-content/themes/biuro/fonts/roboto-v19-cyrillic_latin_cyrillic-ext_latin-ext-700.woff2" crossorigin="anonymous" >
<link rel="preload" href="/wp-content/themes/biuro/css/main.min.css" as="style" onload="this.rel='stylesheet'">
<link rel="preload" href="/wp-content/themes/biuro/css/main-7c323da9f9.min.css" as="style" onload="this.rel='stylesheet'">
<link rel="preconnect" href="https://www.gstatic.com">
<link rel="preconnect" href="https://fonts.gstatic.com">
<noscript>
<link rel="stylesheet" href="/wp-content/themes/biuro/css/main.min.css">
<link rel="stylesheet" href="/wp-content/themes/biuro/css/main-7c323da9f9.min.css">
</noscript>
<?php wp_head(); ?>
......
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff is collapsed.
......@@ -33,9 +33,14 @@ get_header(); ?>
</div>
<div class="c-search--filters">
<button class="js-toggle--aside o-btn c-btn--filter">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" width="17" height="17" class="c-ico--filter">
<path d="M907.8,100.2l-346,380v419.7l-124.5-98.3v-322l-345-379.4H907.8 M907.8,17.9H92.2c-32.6,0-62,19.2-75.2,49c-13.2,29.8-7.5,64.5,14.4,88.6L355,511.3v290.2c0,25.2,11.5,49,31.3,64.6l124.5,98.3c14.8,11.7,32.8,17.7,51,17.7c12.2,0,24.5-2.7,35.9-8.2c28.4-13.7,46.4-42.5,46.4-74V512l324.6-356.5c21.9-24.1,27.6-58.8,14.4-88.6C969.8,37.1,940.3,17.9,907.8,17.9L907.8,17.9z"/>
<button class="js-toggle--aside-city o-btn c-btn--filter">
<svg width="16px" height="19px" class="c-ico--city">
<use xlink:href="#ico--city"></use>
</svg> <?php _e('City', 'biuro'); ?>
</button>
<button class="js-toggle--aside--additional o-btn c-btn--filter">
<svg width="17px" height="17px" class="c-ico--filter">
<use xlink:href="#ico--filter"></use>
</svg> <?php _e('Other filters', 'biuro'); ?>
</button>
</div>
......
......@@ -43,7 +43,11 @@ get_header(); ?>
<div class="l-content l-content--heading">
<?php
if ( !is_search() ):
if ( is_search() ):
?>
<h1><?php _e('Job offers', 'biuro'); ?>:</h1>
<?php
else:
while ( have_posts() ) :
the_post();
the_content();
......
......@@ -95,7 +95,6 @@
<symbol id="ico--filter" viewBox="0 0 1000 1000">
<path class="u-fill--inherit" d="M907.8,100.2l-346,380v419.7l-124.5-98.3v-322l-345-379.4H907.8 M907.8,17.9H92.2c-32.6,0-62,19.2-75.2,49c-13.2,29.8-7.5,64.5,14.4,88.6L355,511.3v290.2c0,25.2,11.5,49,31.3,64.6l124.5,98.3c14.8,11.7,32.8,17.7,51,17.7c12.2,0,24.5-2.7,35.9-8.2c28.4-13.7,46.4-42.5,46.4-74V512l324.6-356.5c21.9-24.1,27.6-58.8,14.4-88.6C969.8,37.1,940.3,17.9,907.8,17.9L907.8,17.9z"/>
</symbol>
<symbol id="ico--city">
<path class="u-fill--inherit" d="M4.5 5.453V4.047c0-.117.041-.217.123-.299a.407.407 0 01.299-.123h1.406c.117 0 .217.041.299.123a.407.407 0 01.123.299v1.406a.407.407 0 01-.123.299.407.407 0 01-.299.123H4.922a.407.407 0 01-.299-.123.407.407 0 01-.123-.299zm6.328.422H9.422a.407.407 0 01-.299-.123A.407.407 0 019 5.453V4.047c0-.117.041-.217.123-.299a.407.407 0 01.299-.123h1.406c.117 0 .217.041.299.123a.407.407 0 01.123.299v1.406a.407.407 0 01-.123.299.407.407 0 01-.299.123zm-4.5 3.375H4.922a.407.407 0 01-.299-.123.407.407 0 01-.123-.299V7.422c0-.117.041-.217.123-.299A.407.407 0 014.922 7h1.406c.117 0 .217.041.299.123a.407.407 0 01.123.299v1.406a.407.407 0 01-.123.299.407.407 0 01-.299.123zm4.5 0H9.422a.407.407 0 01-.299-.123A.407.407 0 019 8.828V7.422c0-.117.041-.217.123-.299A.407.407 0 019.422 7h1.406c.117 0 .217.041.299.123a.407.407 0 01.123.299v1.406a.407.407 0 01-.123.299.407.407 0 01-.299.123zM6.75 10.797v1.406a.407.407 0 01-.123.299.407.407 0 01-.299.123H4.922a.407.407 0 01-.299-.123.407.407 0 01-.123-.299v-1.406c0-.117.041-.217.123-.299a.407.407 0 01.299-.123h1.406c.117 0 .217.041.299.123a.407.407 0 01.123.299zm4.078 1.828H9.422a.407.407 0 01-.299-.123.407.407 0 01-.123-.299v-1.406c0-.117.041-.217.123-.299a.407.407 0 01.299-.123h1.406c.117 0 .217.041.299.123a.407.407 0 01.123.299v1.406a.407.407 0 01-.123.299.407.407 0 01-.299.123zm4.922 4.36v1.265H0v-1.266c0-.117.041-.216.123-.298a.407.407 0 01.299-.124h.703V1.094a.686.686 0 01.229-.598.873.873 0 01.615-.246h11.847c.211 0 .405.082.58.246a.686.686 0 01.229.598v15.468h.703c.117 0 .217.042.299.124a.407.407 0 01.123.298zm-12.938-.458H6.75v-2.355c0-.117.041-.217.123-.299a.407.407 0 01.299-.123h1.406c.117 0 .217.041.299.123a.407.407 0 01.123.299v2.355h3.973V1.973l-10.16-.035v14.59z" fill-rule="nonzero" />
</symbol>
......@@ -105,30 +104,7 @@
<symbol id="ico--field">
<path class="u-fill--inherit" d="M16.312 3.75c.932 0 1.688.756 1.688 1.688v9c0 .931-.756 1.687-1.688 1.687H1.687A1.687 1.687 0 010 14.438v-9C0 4.506.756 3.75 1.687 3.75H4.5V2.063c0-.932.756-1.688 1.687-1.688h5.625c.932 0 1.688.756 1.688 1.688V3.75h2.812zM6.187 2.063V3.75h5.625V2.063H6.187zM1.898 5.438a.211.211 0 00-.21.21V8.25h14.624V5.648a.211.211 0 00-.21-.21H1.898zm14.204 9c.116 0 .21-.095.21-.211v-4.29H11.25v.844a.844.844 0 01-.844.844H7.594a.844.844 0 01-.844-.844v-.843H1.687v4.289c0 .116.095.21.211.21h14.204z" fill-rule="nonzero"/>
</symbol>
</svg>
<?php
/*
// City
<svg width="16" height="19" xmlns="http://www.w3.org/2000/svg">
<path d="M4.5 5.453V4.047c0-.117.041-.217.123-.299a.407.407 0 01.299-.123h1.406c.117 0 .217.041.299.123a.407.407 0 01.123.299v1.406a.407.407 0 01-.123.299.407.407 0 01-.299.123H4.922a.407.407 0 01-.299-.123.407.407 0 01-.123-.299zm6.328.422H9.422a.407.407 0 01-.299-.123A.407.407 0 019 5.453V4.047c0-.117.041-.217.123-.299a.407.407 0 01.299-.123h1.406c.117 0 .217.041.299.123a.407.407 0 01.123.299v1.406a.407.407 0 01-.123.299.407.407 0 01-.299.123zm-4.5 3.375H4.922a.407.407 0 01-.299-.123.407.407 0 01-.123-.299V7.422c0-.117.041-.217.123-.299A.407.407 0 014.922 7h1.406c.117 0 .217.041.299.123a.407.407 0 01.123.299v1.406a.407.407 0 01-.123.299.407.407 0 01-.299.123zm4.5 0H9.422a.407.407 0 01-.299-.123A.407.407 0 019 8.828V7.422c0-.117.041-.217.123-.299A.407.407 0 019.422 7h1.406c.117 0 .217.041.299.123a.407.407 0 01.123.299v1.406a.407.407 0 01-.123.299.407.407 0 01-.299.123zM6.75 10.797v1.406a.407.407 0 01-.123.299.407.407 0 01-.299.123H4.922a.407.407 0 01-.299-.123.407.407 0 01-.123-.299v-1.406c0-.117.041-.217.123-.299a.407.407 0 01.299-.123h1.406c.117 0 .217.041.299.123a.407.407 0 01.123.299zm4.078 1.828H9.422a.407.407 0 01-.299-.123.407.407 0 01-.123-.299v-1.406c0-.117.041-.217.123-.299a.407.407 0 01.299-.123h1.406c.117 0 .217.041.299.123a.407.407 0 01.123.299v1.406a.407.407 0 01-.123.299.407.407 0 01-.299.123zm4.922 4.36v1.265H0v-1.266c0-.117.041-.216.123-.298a.407.407 0 01.299-.124h.703V1.094a.686.686 0 01.229-.598.873.873 0 01.615-.246h11.847c.211 0 .405.082.58.246a.686.686 0 01.229.598v15.468h.703c.117 0 .217.042.299.124a.407.407 0 01.123.298zm-12.938-.458H6.75v-2.355c0-.117.041-.217.123-.299a.407.407 0 01.299-.123h1.406c.117 0 .217.041.299.123a.407.407 0 01.123.299v2.355h3.973V1.973l-10.16-.035v14.59z" fill="#2A3644" fill-rule="nonzero"/>
</svg>
// Type
<svg width="16" height="19" xmlns="http://www.w3.org/2000/svg">
<path d="M5.203 10.375H3.797a.423.423 0 01-.422-.422V8.547c0-.232.19-.422.422-.422h1.406c.232 0 .422.19.422.422v1.406c0 .232-.19.422-.422.422zM9 9.953c0 .232-.19.422-.422.422H7.172a.423.423 0 01-.422-.422V8.547c0-.232.19-.422.422-.422h1.406c.232 0 .422.19.422.422v1.406zm3.375 0c0 .232-.19.422-.422.422h-1.406a.423.423 0 01-.422-.422V8.547c0-.232.19-.422.422-.422h1.406c.232 0 .422.19.422.422v1.406zM9 13.328c0 .232-.19.422-.422.422H7.172a.423.423 0 01-.422-.422v-1.406c0-.232.19-.422.422-.422h1.406c.232 0 .422.19.422.422v1.406zm-3.375 0c0 .232-.19.422-.422.422H3.797a.423.423 0 01-.422-.422v-1.406c0-.232.19-.422.422-.422h1.406c.232 0 .422.19.422.422v1.406zm6.75 0c0 .232-.19.422-.422.422h-1.406a.423.423 0 01-.422-.422v-1.406c0-.232.19-.422.422-.422h1.406c.232 0 .422.19.422.422v1.406zm3.375-9.14v12.374c0 .932-.756 1.688-1.688 1.688H1.687A1.688 1.688 0 010 16.562V4.188C0 3.256.756 2.5 1.687 2.5h1.688V.672c0-.232.19-.422.422-.422h1.406c.232 0 .422.19.422.422V2.5h4.5V.672c0-.232.19-.422.422-.422h1.406c.232 0 .422.19.422.422V2.5h1.687c.932 0 1.688.756 1.688 1.688zm-1.688 12.164V5.875H1.687v10.477c0 .116.095.21.211.21h11.954c.116 0 .21-.094.21-.21z" fill="#2A3644" fill-rule="nonzero"/>
</svg>
// Field
<svg width="18" height="17" xmlns="http://www.w3.org/2000/svg">
<path d="M16.312 3.75c.932 0 1.688.756 1.688 1.688v9c0 .931-.756 1.687-1.688 1.687H1.687A1.687 1.687 0 010 14.438v-9C0 4.506.756 3.75 1.687 3.75H4.5V2.063c0-.932.756-1.688 1.687-1.688h5.625c.932 0 1.688.756 1.688 1.688V3.75h2.812zM6.187 2.063V3.75h5.625V2.063H6.187zM1.898 5.438a.211.211 0 00-.21.21V8.25h14.624V5.648a.211.211 0 00-.21-.21H1.898zm14.204 9c.116 0 .21-.095.21-.211v-4.29H11.25v.844a.844.844 0 01-.844.844H7.594a.844.844 0 01-.844-.844v-.843H1.687v4.289c0 .116.095.21.211.21h14.204z" fill="#2A3644" fill-rule="nonzero"/>
<symbol id="ico--medical" viewBox="0 0 448 512">
<path class="u-fill--inherit" d="M433.9 98L350 14.1C341 5.1 328.8 0 316.1 0h-204c-26.5.1-48 21.6-48 48.1V288H8c-4.4 0-8 3.6-8 8v16c0 4.4 3.6 8 8 8h126.1l34.7 69.5c2.9 5.9 11.4 5.9 14.3 0L240 275.8l22.1 44.2H352c8.8 0 16-7.2 16-16s-7.2-16-16-16h-70.1l-34.7-69.5c-2.9-5.9-11.4-5.9-14.3 0L176 332.2l-19.9-39.8c-1.4-2.7-4.1-4.4-7.2-4.4H96V48.1c0-8.8 7.3-16.1 16.1-16.1h176v104.1c0 13.3 10.7 23.9 24 23.9h104v304c0 8.8-7.2 16-16 16h-288c-8.8 0-16.1-7.2-16.1-16V352H64.1v112c0 26.5 21.5 48 48 48H400c26.5 0 48-21.5 48-48V132c0-12.7-5.1-25-14.1-34zM320 128.1V32.6c2.8.7 5.3 2.1 7.4 4.2l83.9 83.9c2.1 2.1 3.5 4.6 4.2 7.4H320z"/>
</symbol>
</svg>
*/
?>
......@@ -16,8 +16,8 @@ wp plugin install loco-translate --version=2.3.0 --activate-network;
wp plugin install pods --version=2.7.15 --activate-network;
# wp plugin update pods --version=2.7.15;
wp plugin install polylang --version=2.6.4 --activate-network;
# wp plugin update polylang --version=2.6.4;
wp plugin install polylang --version=2.6.5 --activate-network;
# wp plugin update polylang --version=2.6.5;
wp plugin install wordpress-seo --version=12.2 --activate-network;
# wp plugin update wordpress-seo --version=12.2;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment