How to add PHP to a WordPress Page or Post?

WordPress comes with an intuitive visual editor that covers all your basic needs for posting content. No coding is needed. However, when making custom pages or posts, you might need to add your own PHP code. How to add PHP to a WordPress page or post properly? Read on, I’ll present the easiest way to …

How to add PHP to a WordPress Page or Post? Read More »

The post How to add PHP to a WordPress Page or Post? appeared first on The Crazy Programmer.

A Beginners Guide to Kotlin

What is Kotlin ? Kotlin is an expressive Open Source Programing Language with Type Interface for Android development which supports Java Virtual Machine. Google has adopted Kotlin as an official language for Android development. Kotlin development was started by JetBrains initially. It is a compiled and statically typed programming language. Kotlin can be compiled to […]

Hooks vs Classes a few months later

📖 tl;dr: Hooks have simplified a lot of UI code for many users. But what's the maintainers perspective on them? Do they lead to less time spent answering support questions?…

The Double Encoded VNode

📖 tl;dr: I've received a few messages asking about how to debug an issue the past days, so I thought I'd be a good idea to write down my thinking…

When should I use preact compat?

📖 tl;dr: Use preact/compat when you are including third-party libraries in your project that were originally written for React. What's the difference between preact and preact/compat? That's a great and…