March 9, 2017 — This is a third video of WP meetup in Startit center Vršac.
March 9, 2017 — Na prvý pohľad patria možno AJAX a cron medzi pokročilé témy, ale nemusí tomu tak byť.
AJAX je použitý na takmer všetkých webových stránkach, ktoré robia niečo aspoň trošku zaujímavé. Martin Krcho vám ukáže, ako správne nakódiť AJAX-ové volania na WordPress, aby ste mohli držať krok s dobou a nenačítavali pri každom kliknutí celú stránku.
Cron je zase nevyhnutný na vykonávanie opakovaných úloh, ako napr. posielanie súhrnného e-mailu vašim čitateľom každú nedeľu podvečer. Na WordPress je to hračka, keď viete ako na to.
March 9, 2017 — – porovnanie najznámejších cache pluginov (ktorý je rýchlejší)
– optimalizácia obrázkov – manuálne aj automatizovane
– case study (ako klient z 3 sekundového webu spravil 12 sekundový len tým, čo pridal do obsahu)
– načo si dávať pozor pri výbere šablóny
– čo je to asychnrónny javascript a ako naň
March 6, 2017 — Talk dal WordPress Meetup Febbraio 2017 Episodio 19: “WordPress in Love”.
March 6, 2017 — Jenny Beaumont is a multicultural, multidisciplinary maker and writer of things. She is a leader of people and of projects, who values communication above all else as a means to successful collaboration.
Jenny and Paolo Belcastro, are the co-organizers of WordCamp Europe. She is the team lead of the local WordPress Community.
March 5, 2017 — There are many factors that go into making WordPress fast. Caching, minifying, optimizing, CDN’s, web servers, you name it! We’ll take an in-depth look at all the technologies involved in WordPress performance, and make it a little less daunting to go under the hood and start tuning. Yes, yes! You can haz more performanz, too!
March 5, 2017 — WordPress is a great framework. What can we learn from other frameworks? What’s the most expensive things that can happen on, frankly, any website? In this talk, we’ll take a comparative look at different philosophies, tools, and methods to make WordPress sites blazing fast. After attending, you should be able to understand where bottlenecks can pop up in your sites. If you have questions, I’m open to answer them over coffee via Twitter!
March 5, 2017 — Данное руководство расскажет о возможности добавления своих CSS-правил с помощью Дополнительных стилей в WordPress.
Сайты о CSS:
https://webref.ru/
Примеры кода из видео:
.site-title a {
color: #00f;
}
body.has-header-image .site-title a {
color: #00f;
}
body.page:not(.twentyseventeen-front-page) .entry-title {
font-size: 24px;
}
/* Для всех устройств */
body.page:not(.twentyseventeen-front-page) .entry-title {
font-size: 12px;
}
/* Для разрешения планшета в портретной ориентации и выше */
@media (min-width: 768px) {
body.page:not(.twentyseventeen-front-page) .entry-title {
font-size: 20px;
}
}
/* Для разрешения планшета в альбомной ориентации и выше */
@media (min-width: 1024px) {
body.page:not(.twentyseventeen-front-page) .entry-title {
font-size: 30px;
}
}
March 5, 2017 — Too often, UX is only considered on the front-end of a WordPress site design. Although that is very important, too many WP Designers/Developers stop there. We are going to go over tricks and methods to make updating and administrating WordPress sites much more user-friendly for the admin/site-owner/client. Using Custom Post Types, the WPDB API and some creative coding, we can make WordPress sites easier for ANY business and/or experience level of user to update and add content specific to their business. After all, content is king, so let’s encourages admins to add more!
March 5, 2017 — Плагин Custom Meta Widget поможет удалить любые ссылки из стандартного виджета Мета или добавить свою ссылку.
Ссылка на плагин:
https://ru.wordpress.org/plugins/custom-meta-widget/