Just follow the instruction of LOLIPOP.
They wiil automatically encrypt the passwords.
They overwrite the .htaccess and generate .htpasswd.
You have to rewrite .htaccess for original functionality.
Just follow the instruction of LOLIPOP.
They wiil automatically encrypt the passwords.
They overwrite the .htaccess and generate .htpasswd.
You have to rewrite .htaccess for original functionality.
Probably because of yoastSEO.
go to yoastSEO setting → XMLsitemaps: disable
message will be gone.
ファイル全体をhtmlで保存(画像形式は選択);
…..files フォルダが作成され、そこにすべての画像が入っている。
q2w3-fixed-widget | contact-form-7 | jquery-masonry | twentythirteen-script | wp-embed | metaslider-flex-slider | metaslider-easing |
https://jonassebastianohlsson.com/criticalpathcssgenerator/
1.
/*
* Getting script tags
* Thanks http://wordpress.stackexchange.com/questions/54064/how-do-i-get-the-handle-for-all-enqueued-scripts
*/
add_action( 'wp_print_scripts', 'wsds_detect_enqueued_scripts' );
function wsds_detect_enqueued_scripts() {
global $wp_scripts;
foreach( $wp_scripts->queue as $handle ) :
echo $handle . ' | ';
endforeach;
}
admin-bar | contact-form-7 | maxbuttons-front | jquery | twentysixteen-html5 | twentysixteen-skip-link-focus-fix | twentysixteen-script |
add_filter( 'script_loader_tag', 'wsds_defer_scripts', 10, 3 );
function wsds_defer_scripts( $tag, $handle, $src ) {
// The handles of the enqueued scripts we want to defer
$defer_scripts = array(
'admin-bar',
'contact-form-7',
'maxbuttons-front',
' jquery',
'wpshout-js-cookie-demo',
'twentysixteen-html5',
'twentysixteen-skip-link-focus-fix',
'twentysixteen-script',
);
if ( in_array( $handle, $defer_scripts ) ) {
return '<script src="' . $src . '" defer="defer" type="text/javascript"></script>' . "\n";
}
return $tag;
}
In funcions.php of child theme:
function my_theme_enqueue_styles() {
$parent_style = ‘parent-style’; // This is ‘twentyfifteen-style’ for the Twenty Fifteen theme.
Replace ‘parent-style’ with actual parent theme; like ‘twentysixteen-style’.
Otherwise, css loading is doubled with strange( parent theme version?) version name.
chips/jsstour: Theme: child2
switcher setting: smartphoneTheme: child
real mobile: child is seen at mobile; narrow browser on PC sees child2;
Setting is the same at japansightseeingtour.jp .
Restart all again using Autoptimize:
1. Undo manipulation relating JS as described in Speed up jsstour(1):