Custom Post type for wordpress using code

https://www.wpbeginner.com/wp-tutorials/how-to-create-custom-post-types-in-wordpress/ Place the following code in function.php in theme //yang added items // Our custom post type function function create_posttype() { register_post_type( 'coinObject', // CPT Options array( 'labels' => array(…

LKCNHMViewer Export to iOS Problems and solutions

Problem: Xcode Compiling error - Apple Mach-o Linker (0) error Problems when compiling after export to Xcode Solution: Install the Resonance Audio https://github.com/resonance-audio/resonance-audio-unity-sdk/releases Download and install the unity package Change…

How to allow ADB in Mac Terminal

Problem: Cannot find the command adb in Mac terminal Solution: Ensure the environmental variable is setup in $HOME/.zshrc This is a hidden file, if doesn't exist, can create a new…

Hacking Azure Function Cold Start

Azure function requires subscription to remove cold start, for small project, it may not be cost effective hence creating a simple api call to "wake up" azure function during possible…