SlideShare a Scribd company logo
1 of 16
Workshop Partner:
Saad Amin
Cofounder and CTO
Inspire Chittagong
Cofounder & Managing Director
Codework Builders and Assets Ltd
Mizanur Rahaman Mizan
Cofounder and COO
Inspire Chittagong
Founder
BD Pathshala
Enqueue style
<?php
wp_enqueue_style( $handle, $src, $deps, $ver, $media );
?>
$handle = Name used as a handle for the stylesheet.
$src = URL to the stylesheet
$deps (array) (optional) = Dependency
$ver (string|boolean) (optional) = Version
$media (string|boolean) (optional) = String specifying the media for
which this stylesheet has been defined. Examples: 'all', 'screen',
'handheld', 'print'. See this list for the full range of valid CSS-media-
types.Default: 'all'
Return string;
$tu = get_template_directory_uri();
$tu = get_stylesheet_directory_uri () ;
site_url();
Output: http://www.example.com or http://ww
w.example.com/wordpress
Return with echo
bloginfo('template_url')
<?php
wp_enqueue_script( $handle, $src, $deps, $ver, $in_footer );
?>
$handle(string) (required) Name used as a handle for the script
$src (string) (optional) URL to the script,
$deps (array) (optional) = Dependency
$ver (string|boolean) (optional) = Version
$in_footer (boolean) (optional) Normally, scripts are placed
in <head> of the HTML document. If this parameter is true,
the script is placed before the </body> end tag. This
requires the theme to have the wp_footer() template tag in
the appropriate place.
 Default: false
Enqueue script
/** * Proper way to enqueue scripts and styles */
function theme_name_scripts() {
wp_enqueue_style( 'style-name', get_stylesheet_uri() );
wp_enqueue_script( 'script-name',
get_template_directory_uri() . '/js/example.js', array(), '1.0.0',
true );
}
add_action( 'wp_enqueue_scripts', 'theme_name_scripts' );
Note : Tip: print_r( $wp_styles );
Usage
<?php
function my_scripts_method() {
wp_enqueue_script( 'scriptaculous' );
wp_enqueue_script('jquery');
wp_enqueue_script('jquery-ui-core');
wp_enqueue_script(' jquery-effects-core ');
}
add_action( 'wp_enqueue_scripts', 'my_scripts_method' );
// wp_enqueue_scripts action hook to link only on the front-
end , For admin panel use admin_enqueue_scripts
?>
Enqeue Jquery
http://codex.wordpress.org/Function_Reference/register_po
st_type
<?php
function edu_slider_reg() {
$args = array(
'public' => true,
'label' => 'Slider',
'supports' => array('thumbnail', 'title', 'custom-fields')
);
register_post_type( 'slider', $args );
}
add_action( 'init', 'edu_slider_reg' );
?>
add_theme_support( 'post-thumbnails', array(
'post', 'slider-items','page') );
// for adding fixed image size for slider or anything
add_image_size('slider-larger',1900,654);
Image Resize for Slider
<?php
$args = array(
'post_type' => array( 'slider' ),
'posts_per_page' => -1
);
$wp_query = new WP_Query( $args );
$i=1;
if ( $wp_query->have_posts() ) {
while ( $wp_query->have_posts() ) {
$wp_query->the_post();
$feat_image =
wp_get_attachment_url( get_post_thumbnail_id($post->ID) );
?> <li><a href="#slide<?php echo i; ?>"><img src="<?php
echo $feat_image; ?>" alt="<?php the_title(); ?>"></a></li>
<?php
$i++;
}}
?>
// for registering a menu. we can do this for as
many menu we want in a theme.
register_nav_menus( array(
'primary' => __('PrimaryMenu'),
) );
<?php
$menus = wp_get_nav_menus();
$menu_items =
wp_get_nav_menu_items($menus[0]);
foreach ($menu_items as $menu_item) {
echo ' <li><a href="'.$menu_item-
>url.'">' . $menu_item->title . '</a></li>';
}
?>
// widget registration/ register sidebar
function edu_widget(){
register_sidebar( array(
'name' => __( 'HomePage Welcome',
'smebiztcrews' ),
'id' => 'welcome_text',
'description' => 'This is the widget to put text
in the homepage as welcome text alongside a video or something
else',
'class' => '',
'before_widget' => '<article class="col-sm-
7">',
'after_widget' => '</article>',
'before_title' => '<h4 class="text-title">',
'after_title' => '</h4>'));
}
add_action('widgets_init','edu_widget');
<?php
dynamic_sidebar( 'HomePage Welcome' );
?>
 Twitter: @mizpress (Mizan) @saadwho (Saad)
 Website(s): http://www.inspirechittagong.com (Inspire
Chittagong)
http://www.saadamin.info (Saad Amin)
http://www.mizpress.com (Mizanur Rahaman
Mizan)
 Email: admin@inspirechittagong.com


More Related Content

What's hot

Auto tools
Auto toolsAuto tools
Auto tools
祺 周
 
Who Needs Ruby When You've Got CodeIgniter
Who Needs Ruby When You've Got CodeIgniterWho Needs Ruby When You've Got CodeIgniter
Who Needs Ruby When You've Got CodeIgniter
ciconf
 
Introduction to ZendX jQuery
Introduction to ZendX jQueryIntroduction to ZendX jQuery
Introduction to ZendX jQuery
dennisdc
 
Introduction to Zend_Pdf
Introduction to Zend_PdfIntroduction to Zend_Pdf
Introduction to Zend_Pdf
dennisdc
 
Twitter bootstrap
Twitter bootstrapTwitter bootstrap
Twitter bootstrap
dennisdc
 

What's hot (20)

Auto tools
Auto toolsAuto tools
Auto tools
 
Security in laravel
Security in laravelSecurity in laravel
Security in laravel
 
Let's write secure Drupal code! - 13.09.2018 @ Drupal Europe, Darmstadt, Germany
Let's write secure Drupal code! - 13.09.2018 @ Drupal Europe, Darmstadt, GermanyLet's write secure Drupal code! - 13.09.2018 @ Drupal Europe, Darmstadt, Germany
Let's write secure Drupal code! - 13.09.2018 @ Drupal Europe, Darmstadt, Germany
 
Let jQuery Rock Your World
Let jQuery Rock Your WorldLet jQuery Rock Your World
Let jQuery Rock Your World
 
WordPress overloading Gravityforms using hooks, filters and extending classes
WordPress overloading Gravityforms using hooks, filters and extending classes WordPress overloading Gravityforms using hooks, filters and extending classes
WordPress overloading Gravityforms using hooks, filters and extending classes
 
Who Needs Ruby When You've Got CodeIgniter
Who Needs Ruby When You've Got CodeIgniterWho Needs Ruby When You've Got CodeIgniter
Who Needs Ruby When You've Got CodeIgniter
 
Building scalable products with WordPress - WordCamp London 2018
Building scalable products with WordPress - WordCamp London 2018Building scalable products with WordPress - WordCamp London 2018
Building scalable products with WordPress - WordCamp London 2018
 
Introduction to ZendX jQuery
Introduction to ZendX jQueryIntroduction to ZendX jQuery
Introduction to ZendX jQuery
 
SQL Injection Part 2
SQL Injection Part 2SQL Injection Part 2
SQL Injection Part 2
 
HTML::FormHandler
HTML::FormHandlerHTML::FormHandler
HTML::FormHandler
 
Apostrophe
ApostropheApostrophe
Apostrophe
 
Daily notes
Daily notesDaily notes
Daily notes
 
Sins Against Drupal 2
Sins Against Drupal 2Sins Against Drupal 2
Sins Against Drupal 2
 
Introduction to Zend_Pdf
Introduction to Zend_PdfIntroduction to Zend_Pdf
Introduction to Zend_Pdf
 
Drupal sins 2016 10-06
Drupal sins 2016 10-06Drupal sins 2016 10-06
Drupal sins 2016 10-06
 
J queryui
J queryuiJ queryui
J queryui
 
Add loop shortcode
Add loop shortcodeAdd loop shortcode
Add loop shortcode
 
Smarty
SmartySmarty
Smarty
 
Count to 10 and Say Yes
Count to 10 and Say YesCount to 10 and Say Yes
Count to 10 and Say Yes
 
Twitter bootstrap
Twitter bootstrapTwitter bootstrap
Twitter bootstrap
 

Similar to WordPress Theme Design and Development Workshop - Day 3

Laying the proper foundation for plugin and theme development
Laying the proper foundation for plugin and theme developmentLaying the proper foundation for plugin and theme development
Laying the proper foundation for plugin and theme development
Tammy Hart
 
Gail villanueva add muscle to your wordpress site
Gail villanueva   add muscle to your wordpress siteGail villanueva   add muscle to your wordpress site
Gail villanueva add muscle to your wordpress site
references
 
Jarv.us Showcase — SenchaCon 2011
Jarv.us Showcase — SenchaCon 2011Jarv.us Showcase — SenchaCon 2011
Jarv.us Showcase — SenchaCon 2011
Chris Alfano
 

Similar to WordPress Theme Design and Development Workshop - Day 3 (20)

Building Potent WordPress Websites
Building Potent WordPress WebsitesBuilding Potent WordPress Websites
Building Potent WordPress Websites
 
Using Geeklog as a Web Application Framework
Using Geeklog as a Web Application FrameworkUsing Geeklog as a Web Application Framework
Using Geeklog as a Web Application Framework
 
Laying the proper foundation for plugin and theme development
Laying the proper foundation for plugin and theme developmentLaying the proper foundation for plugin and theme development
Laying the proper foundation for plugin and theme development
 
Geek Moot '09 -- Smarty 101
Geek Moot '09 -- Smarty 101Geek Moot '09 -- Smarty 101
Geek Moot '09 -- Smarty 101
 
Flask – Python
Flask – PythonFlask – Python
Flask – Python
 
Virtual Madness @ Etsy
Virtual Madness @ EtsyVirtual Madness @ Etsy
Virtual Madness @ Etsy
 
Django Vs Rails
Django Vs RailsDjango Vs Rails
Django Vs Rails
 
Gail villanueva add muscle to your wordpress site
Gail villanueva   add muscle to your wordpress siteGail villanueva   add muscle to your wordpress site
Gail villanueva add muscle to your wordpress site
 
WCLA12 JavaScript
WCLA12 JavaScriptWCLA12 JavaScript
WCLA12 JavaScript
 
Unit testing after Zend Framework 1.8
Unit testing after Zend Framework 1.8Unit testing after Zend Framework 1.8
Unit testing after Zend Framework 1.8
 
Blog Hacks 2011
Blog Hacks 2011Blog Hacks 2011
Blog Hacks 2011
 
Apostrophe (improved Paris edition)
Apostrophe (improved Paris edition)Apostrophe (improved Paris edition)
Apostrophe (improved Paris edition)
 
Opencast Admin UI - Introduction to developing using AngularJS
Opencast Admin UI - Introduction to developing using AngularJSOpencast Admin UI - Introduction to developing using AngularJS
Opencast Admin UI - Introduction to developing using AngularJS
 
Bag Of Tricks From Iusethis
Bag Of Tricks From IusethisBag Of Tricks From Iusethis
Bag Of Tricks From Iusethis
 
Doctrine For Beginners
Doctrine For BeginnersDoctrine For Beginners
Doctrine For Beginners
 
Jarv.us Showcase — SenchaCon 2011
Jarv.us Showcase — SenchaCon 2011Jarv.us Showcase — SenchaCon 2011
Jarv.us Showcase — SenchaCon 2011
 
HirshHorn theme: how I created it
HirshHorn theme: how I created itHirshHorn theme: how I created it
HirshHorn theme: how I created it
 
Django at the Disco
Django at the DiscoDjango at the Disco
Django at the Disco
 
Django at the Disco
Django at the DiscoDjango at the Disco
Django at the Disco
 
Django at the Disco
Django at the DiscoDjango at the Disco
Django at the Disco
 

More from Mizanur Rahaman Mizan

More from Mizanur Rahaman Mizan (7)

WordCamp Pokhara - Contributing to the WordPress Repository in a smart Way
WordCamp Pokhara - Contributing to the WordPress Repository in a smart WayWordCamp Pokhara - Contributing to the WordPress Repository in a smart Way
WordCamp Pokhara - Contributing to the WordPress Repository in a smart Way
 
résumé - Mizanur Rahaman Mizan
résumé - Mizanur Rahaman Mizanrésumé - Mizanur Rahaman Mizan
résumé - Mizanur Rahaman Mizan
 
For the one who thinks they have failed in life!
For the one who thinks they have failed in life!For the one who thinks they have failed in life!
For the one who thinks they have failed in life!
 
Programming Logic for Any Programming Language - Session2
Programming Logic for Any Programming Language - Session2Programming Logic for Any Programming Language - Session2
Programming Logic for Any Programming Language - Session2
 
Programming Logic for any Programming Language - Session1
Programming Logic for any Programming Language - Session1Programming Logic for any Programming Language - Session1
Programming Logic for any Programming Language - Session1
 
Payoneer Bangladesh Forum Chittagong Meetup Speech Slide - Kickstart your Onl...
Payoneer Bangladesh Forum Chittagong Meetup Speech Slide - Kickstart your Onl...Payoneer Bangladesh Forum Chittagong Meetup Speech Slide - Kickstart your Onl...
Payoneer Bangladesh Forum Chittagong Meetup Speech Slide - Kickstart your Onl...
 
WordPress Theme Design and Development Workshop - Day 2
WordPress Theme Design and Development Workshop - Day 2WordPress Theme Design and Development Workshop - Day 2
WordPress Theme Design and Development Workshop - Day 2
 

Recently uploaded

call girls in Dakshinpuri (DELHI) 🔝 >༒9953056974 🔝 genuine Escort Service 🔝✔️✔️
call girls in Dakshinpuri  (DELHI) 🔝 >༒9953056974 🔝 genuine Escort Service 🔝✔️✔️call girls in Dakshinpuri  (DELHI) 🔝 >༒9953056974 🔝 genuine Escort Service 🔝✔️✔️
call girls in Dakshinpuri (DELHI) 🔝 >༒9953056974 🔝 genuine Escort Service 🔝✔️✔️
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard ...
Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard  ...Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard  ...
Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard ...
nirzagarg
 
How to Build a Simple Shopify Website
How to Build a Simple Shopify WebsiteHow to Build a Simple Shopify Website
How to Build a Simple Shopify Website
mark11275
 
Design Inspiration for College by Slidesgo.pptx
Design Inspiration for College by Slidesgo.pptxDesign Inspiration for College by Slidesgo.pptx
Design Inspiration for College by Slidesgo.pptx
TusharBahuguna2
 
Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...
Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...
Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...
nirzagarg
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
dollysharma2066
 
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
amitlee9823
 
Editorial design Magazine design project.pdf
Editorial design Magazine design project.pdfEditorial design Magazine design project.pdf
Editorial design Magazine design project.pdf
tbatkhuu1
 
➥🔝 7737669865 🔝▻ dharamshala Call-girls in Women Seeking Men 🔝dharamshala🔝 ...
➥🔝 7737669865 🔝▻ dharamshala Call-girls in Women Seeking Men  🔝dharamshala🔝  ...➥🔝 7737669865 🔝▻ dharamshala Call-girls in Women Seeking Men  🔝dharamshala🔝  ...
➥🔝 7737669865 🔝▻ dharamshala Call-girls in Women Seeking Men 🔝dharamshala🔝 ...
amitlee9823
 

Recently uploaded (20)

HiFi Call Girl Service Delhi Phone ☞ 9899900591 ☜ Escorts Service at along wi...
HiFi Call Girl Service Delhi Phone ☞ 9899900591 ☜ Escorts Service at along wi...HiFi Call Girl Service Delhi Phone ☞ 9899900591 ☜ Escorts Service at along wi...
HiFi Call Girl Service Delhi Phone ☞ 9899900591 ☜ Escorts Service at along wi...
 
call girls in Dakshinpuri (DELHI) 🔝 >༒9953056974 🔝 genuine Escort Service 🔝✔️✔️
call girls in Dakshinpuri  (DELHI) 🔝 >༒9953056974 🔝 genuine Escort Service 🔝✔️✔️call girls in Dakshinpuri  (DELHI) 🔝 >༒9953056974 🔝 genuine Escort Service 🔝✔️✔️
call girls in Dakshinpuri (DELHI) 🔝 >༒9953056974 🔝 genuine Escort Service 🔝✔️✔️
 
Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard ...
Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard  ...Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard  ...
Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard ...
 
❤Personal Whatsapp Number 8617697112 Samba Call Girls 💦✅.
❤Personal Whatsapp Number 8617697112 Samba Call Girls 💦✅.❤Personal Whatsapp Number 8617697112 Samba Call Girls 💦✅.
❤Personal Whatsapp Number 8617697112 Samba Call Girls 💦✅.
 
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
 
How to Build a Simple Shopify Website
How to Build a Simple Shopify WebsiteHow to Build a Simple Shopify Website
How to Build a Simple Shopify Website
 
Design Inspiration for College by Slidesgo.pptx
Design Inspiration for College by Slidesgo.pptxDesign Inspiration for College by Slidesgo.pptx
Design Inspiration for College by Slidesgo.pptx
 
Booking open Available Pune Call Girls Nanded City 6297143586 Call Hot India...
Booking open Available Pune Call Girls Nanded City  6297143586 Call Hot India...Booking open Available Pune Call Girls Nanded City  6297143586 Call Hot India...
Booking open Available Pune Call Girls Nanded City 6297143586 Call Hot India...
 
Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...
Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...
Nisha Yadav Escorts Service Ernakulam ❣️ 7014168258 ❣️ High Cost Unlimited Ha...
 
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Hy...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Hy...Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Hy...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Hy...
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...
VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...
VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...
 
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
 
Sector 104, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 104, Noida Call girls :8448380779 Model Escorts | 100% verifiedSector 104, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 104, Noida Call girls :8448380779 Model Escorts | 100% verified
 
Hire 💕 8617697112 Meerut Call Girls Service Call Girls Agency
Hire 💕 8617697112 Meerut Call Girls Service Call Girls AgencyHire 💕 8617697112 Meerut Call Girls Service Call Girls Agency
Hire 💕 8617697112 Meerut Call Girls Service Call Girls Agency
 
Q4-W4-SCIENCE-5 power point presentation
Q4-W4-SCIENCE-5 power point presentationQ4-W4-SCIENCE-5 power point presentation
Q4-W4-SCIENCE-5 power point presentation
 
Jordan_Amanda_DMBS202404_PB1_2024-04.pdf
Jordan_Amanda_DMBS202404_PB1_2024-04.pdfJordan_Amanda_DMBS202404_PB1_2024-04.pdf
Jordan_Amanda_DMBS202404_PB1_2024-04.pdf
 
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
 
Editorial design Magazine design project.pdf
Editorial design Magazine design project.pdfEditorial design Magazine design project.pdf
Editorial design Magazine design project.pdf
 
➥🔝 7737669865 🔝▻ dharamshala Call-girls in Women Seeking Men 🔝dharamshala🔝 ...
➥🔝 7737669865 🔝▻ dharamshala Call-girls in Women Seeking Men  🔝dharamshala🔝  ...➥🔝 7737669865 🔝▻ dharamshala Call-girls in Women Seeking Men  🔝dharamshala🔝  ...
➥🔝 7737669865 🔝▻ dharamshala Call-girls in Women Seeking Men 🔝dharamshala🔝 ...
 

WordPress Theme Design and Development Workshop - Day 3

  • 2. Saad Amin Cofounder and CTO Inspire Chittagong Cofounder & Managing Director Codework Builders and Assets Ltd
  • 3. Mizanur Rahaman Mizan Cofounder and COO Inspire Chittagong Founder BD Pathshala
  • 4. Enqueue style <?php wp_enqueue_style( $handle, $src, $deps, $ver, $media ); ?> $handle = Name used as a handle for the stylesheet. $src = URL to the stylesheet $deps (array) (optional) = Dependency $ver (string|boolean) (optional) = Version $media (string|boolean) (optional) = String specifying the media for which this stylesheet has been defined. Examples: 'all', 'screen', 'handheld', 'print'. See this list for the full range of valid CSS-media- types.Default: 'all'
  • 5. Return string; $tu = get_template_directory_uri(); $tu = get_stylesheet_directory_uri () ; site_url(); Output: http://www.example.com or http://ww w.example.com/wordpress Return with echo bloginfo('template_url')
  • 6. <?php wp_enqueue_script( $handle, $src, $deps, $ver, $in_footer ); ?> $handle(string) (required) Name used as a handle for the script $src (string) (optional) URL to the script, $deps (array) (optional) = Dependency $ver (string|boolean) (optional) = Version $in_footer (boolean) (optional) Normally, scripts are placed in <head> of the HTML document. If this parameter is true, the script is placed before the </body> end tag. This requires the theme to have the wp_footer() template tag in the appropriate place.  Default: false Enqueue script
  • 7. /** * Proper way to enqueue scripts and styles */ function theme_name_scripts() { wp_enqueue_style( 'style-name', get_stylesheet_uri() ); wp_enqueue_script( 'script-name', get_template_directory_uri() . '/js/example.js', array(), '1.0.0', true ); } add_action( 'wp_enqueue_scripts', 'theme_name_scripts' ); Note : Tip: print_r( $wp_styles ); Usage
  • 8. <?php function my_scripts_method() { wp_enqueue_script( 'scriptaculous' ); wp_enqueue_script('jquery'); wp_enqueue_script('jquery-ui-core'); wp_enqueue_script(' jquery-effects-core '); } add_action( 'wp_enqueue_scripts', 'my_scripts_method' ); // wp_enqueue_scripts action hook to link only on the front- end , For admin panel use admin_enqueue_scripts ?> Enqeue Jquery
  • 9. http://codex.wordpress.org/Function_Reference/register_po st_type <?php function edu_slider_reg() { $args = array( 'public' => true, 'label' => 'Slider', 'supports' => array('thumbnail', 'title', 'custom-fields') ); register_post_type( 'slider', $args ); } add_action( 'init', 'edu_slider_reg' ); ?>
  • 10. add_theme_support( 'post-thumbnails', array( 'post', 'slider-items','page') ); // for adding fixed image size for slider or anything add_image_size('slider-larger',1900,654); Image Resize for Slider
  • 11. <?php $args = array( 'post_type' => array( 'slider' ), 'posts_per_page' => -1 ); $wp_query = new WP_Query( $args ); $i=1; if ( $wp_query->have_posts() ) { while ( $wp_query->have_posts() ) { $wp_query->the_post(); $feat_image = wp_get_attachment_url( get_post_thumbnail_id($post->ID) ); ?> <li><a href="#slide<?php echo i; ?>"><img src="<?php echo $feat_image; ?>" alt="<?php the_title(); ?>"></a></li> <?php $i++; }} ?>
  • 12. // for registering a menu. we can do this for as many menu we want in a theme. register_nav_menus( array( 'primary' => __('PrimaryMenu'), ) );
  • 13. <?php $menus = wp_get_nav_menus(); $menu_items = wp_get_nav_menu_items($menus[0]); foreach ($menu_items as $menu_item) { echo ' <li><a href="'.$menu_item- >url.'">' . $menu_item->title . '</a></li>'; } ?>
  • 14. // widget registration/ register sidebar function edu_widget(){ register_sidebar( array( 'name' => __( 'HomePage Welcome', 'smebiztcrews' ), 'id' => 'welcome_text', 'description' => 'This is the widget to put text in the homepage as welcome text alongside a video or something else', 'class' => '', 'before_widget' => '<article class="col-sm- 7">', 'after_widget' => '</article>', 'before_title' => '<h4 class="text-title">', 'after_title' => '</h4>')); } add_action('widgets_init','edu_widget');
  • 16.  Twitter: @mizpress (Mizan) @saadwho (Saad)  Website(s): http://www.inspirechittagong.com (Inspire Chittagong) http://www.saadamin.info (Saad Amin) http://www.mizpress.com (Mizanur Rahaman Mizan)  Email: admin@inspirechittagong.com 