Learn how to create a responsive „timeline“ with CSS.
https://danielcak.ambike.com/wp-content/uploads/2021/02/css-timeline.html
Learn how to create a responsive „timeline“ with CSS.
https://danielcak.ambike.com/wp-content/uploads/2021/02/css-timeline.html
You can set up a jQuery document ready function for use with WordPress and use the jQuery library that WordPress ships with rather than use another one. Here are three ways to use jQuery document ready function with WordPress.
You can redirect all your WordPress pages to a designated Coming Soon page for all non-logged in users with the template_redirect action hook whilst leaving all pages visible to logged in users.
1 2 3 4 5 6 7 |
add_action( 'template_redirect', 'themeprefix_coming_soon' ); function themeprefix_coming_soon() { if( !is_user_logged_in() && ! is_front_page() || is_home() ){ wp_redirect( site_url() ); exit(); } } |
So if the user is not logged in and the page is not the home page then redirect the user to the home page, if you want a different page to direct them to, change the parameters as below.
1 2 3 4 5 6 7 |
add_action( 'template_redirect', 'themeprefix_coming_soon' ); function themeprefix_coming_soon() { if( !is_user_logged_in() && !is_page('comingsoon') ){ wp_redirect( site_url('comingsoon') ); exit(); } } |
So above the as long as the page is not ‘comingsoon’ the non-logged in user will be redirected to it.
WordPress sends a few emails out from a website including password reset emails that have a from email address wordpress@yoursite.com they also have a from name of WordPress.
Two WordPress filters can change these values wp_mail_from and wp_mail_from_name – add the below code in your child themes functions.php and change the appropriate values.
1 2 3 4 5 6 7 8 9 10 11 |
add_filter('wp_mail_from', 'prefix_email_from'); // Change default WordPress from email address function prefix_email_from( $new_email ) { return 'admin@newadress.com'; // Change email address } add_filter('wp_mail_from_name', 'prefix_name_from'); // Change default WordPress from name function prefix_name_from( $new_name ) { return 'Company Name'; // Change from name } |
You could also bring in option values already created in the Settings > General page and use the Blogname and Admin Email values…
1 2 3 4 5 6 7 8 9 10 11 12 13 |
add_filter('wp_mail_from', 'prefix_email_from'); // Change default WordPress from email address function prefix_email_from( $new_email ) { $admin_email = get_option( 'admin_email' ); return $admin_email; } add_filter('wp_mail_from_name', 'prefix_name_from'); // Change default WordPress from name function prefix_name_from( $new_name ) { $blogname = get_option( 'blogname' ); return $blogname; } |
Loading.io je skvělý zdroj animovaných ikon. Zajímavá je zvláště jejich SVG varianta, stačí je prozkoumat v Chrome Developers Console.
According to our latest poll, so far the votes are pretty much split on whether people love, hate, or don’t care about WordPress‘ new Admin Bar. Over time, it looks like „Hate it“ has started to pull ahead, but it doesn’t matter because the Admin Bar Toolbar is here to stay, regardless of opinion. Already there are many awesome ways to make it do virtually whatever you want. So that’s the deal, and in this DigWP post, we round up a ton of tips, tricks, and plugins for ultimately mastering the WordPress Admin Bar.
WordPress is an amazing CMS platform, but it can also be quite slow if not optimized correctly. In this guide, we will show you how to speed up WordPress by sharing our web performance strategies and recommendations.
Businesses all over the world rely on WordPress to power their websites. It is used by over half of those that use a content management system and according to ManageWP, that is over 74 million websites that are currently using WordPress.
Umožňuje blokaci přistupů a tedy účinnou obranu proti útokům ze zahraničí s výjimkou přístupů z ČR a SK.
Do souboru .htaccess stačí vložit tento kód:
1 2 3 4 5 6 7 8 |
<IfModule mod_geoip.c> <FilesMatch "wp-login.php|xmlrpc.php"> RewriteEngine on RewriteCond %{ENV:GEOIP_COUNTRY_CODE} !^(CZ|SK)$ RewriteCond %{ENV:GEOIP_COUNTRY_CODE_V6} !^(CZ|SK)$ RewriteRule ^(.*)$ - [F,L] </FilesMatch> </IfModule> |
Toto nastavení blokuje požadavky směřující na soubor wp-login.php a xmlrpc.php (nejčastější zdroje útoků).
Kódy států jsou definovány dle standardu ISO 3166-1 (alpha-2).
Takto bude vypadat zápis výjimky pouze pro Českou Republiku:
1 2 |
RewriteCond %{ENV:GEOIP_COUNTRY_CODE} !^(CZ)$ RewriteCond %{ENV:GEOIP_COUNTRY_CODE_V6} !^(CZ)$ |
A takto kombinace výjimek pro CZ, SK, DE:
1 2 |
RewriteCond %{ENV:GEOIP_COUNTRY_CODE} !^(CZ|SK|DE)$ RewriteCond %{ENV:GEOIP_COUNTRY_CODE_V6} !^(CZ|SK|DE)$ |
Powered by WordPress & Theme by Anders Norén