wordpress custom meta box multiple fields
how to display metabox value in wordpress
wordpress meta box tutorial
wordpress meta box generator
wordpress add meta box textarea
save meta box value in wordpress
how to get custom meta box value in wordpress
add meta box wordpress custom post type
Advanced WordPress Theme Development | WordPress theme development course
Note : Ensure to get the instance of the class into the class-aquila-theme.php by adding Meta_Boxes::get_instance(); ( which is not shown in the video ) You can check the code here
https://github.com/imranhsayed/aquila/blob/b37b0d6e8bda62dc18884a04ba270c334f0c098a/inc/classes/class-aquila-theme.php#L20
—– SUBSCRIBE TO CHANNEL – https://www.youtube.com/c/ImranSayedDev?sub_confirmation=1
*** Full Playlist ***
https://codeytek.com/course/advanced-wordpress-theme-development-course/
*** Github repo ***
https://github.com/imranhsayed/aquila
Please star my repo to support my work ๐
******* Social Links ********
Please follow ๐
Twitter – @codeytek
Github – imranhsayed
https://github.com/imranhsayed
******* Other Playlist ******
==== REACT TUTORIALS ====
https://codeytek.com/course/react-tutorial-from-beginner-to-advanced-course/
==== REDUX TUTORIALS ====
https://codeytek.com/course/redux-tutorial-for-beginners-course/
==== REACT WITH WORDPRESS TUTORIALS ====
https://codeytek.com/course/headless-wordpress-react-course/
==== WEBPACK TUTORIALS ====
https://codeytek.com/course/webpack-tutorial-course/
#wordpress #meta-box #theme
source
@__byteWise01
If you don't see your meta box in the editor, try in your classes folder -> class-{ your_theme_name }-theme.php :
protected function __construct() {
// load class
Assets::get_istance();
Menus::get_istance();
Meta_Boxes::get_istance(); // add this to show meta box!
$this -> setup_hooks();
}
Thank you for this amazing tutorial!
@AtacamaHumanoid
No nonces?
@ruthrojasp
I watched the video two time and you didn't said that need to get the instance of Meta_boxes class. I thought that was me but no.