Today I Learned - Rocky Kev

TIL You may not need WP Plugin

POSTED ON:

TAGS:

WordPress Plugins are great for extending functionality.

But maybe you just don't need it.

NOTE: If you're not a developer, you might break your site.

Some things on this list:

  1. CREATE CUSTOM POST TYPE
  2. DISPLAY RELATED POSTS
  3. GENERATE SITEMAP.XML
  4. CUSTOM LOGIN PAGE LOGO
  5. CREATE SHORTCODE
  6. ADD GOOGLE ANALYTICS SNIPPET
  7. 301 REDIRECTS
  8. ADD CUSTOM CSS AND JS
  9. IMPLEMENT SSL/HTTPS
  10. ENABLE GZIP COMPRESSION

ref - waybackmachine


Related TILs

Tagged:

TIL Static Blocks vs Dynamic Blocks

A static block is a piece of content whose markup is known when the page is saved. The block saves its content and markup directly in the post content. A dynamic block is a piece of content whose markup and exact content are not known when the page is saved.

TIL how to convert a shortcode to a WP block

Traditionally, shortcodes were a way that plugin developers could provide users the ability to add specific plugin functionality anwhere on their site. But shortcodes are not very user friendly, nor was hunting down the relevant data you needed to render the correct data for the shortcode. Converting existing shortcodes to blocks provides a much greater user experience in all aspects.

TIL how WordPress does serverside

This isn't fully accurate, but for the means of describing server-side rendering, it's a good start!