Firebase CLI: How to Change Project
Updated: Dec 17, 2022
When working with Firebase CLI, you can switch between projects by using the firebase use command, like this: firebase use [project id] To see the ids of your Firebase projects, execute the following command: firebase......
WordPress: Passing Params to get_template_part()
Updated: Dec 17, 2022
When using the get_template_part function in WordPress, you can pass parameters to it as shown below: <?php get_template_part( 'my-templates/aweasome-post-template', null, [ 'value1' => 'ABC', 'value2' =>......