SlideShare a Scribd company logo
1 of 57
Using the WordPress HTML Text
Widget To Build Some Extra Things
Presented by:
Anh Thien (Alice Ng.)
Web Developer, WordPress Enthusiast
I  WordPress
May 2014 2
Agenda
I  WordPress
1. HTML Text Widget – What is it?
1.1. Definition
1.2. Its Applications
2. Building some extra things
2.2. Adding your favorites: Music Playlist, Flickr, YouTube
2.1. Building your own Social Buttons
4. Conclusion
3. Suggestion & Notes
May 2014 3
1. HTML TEXT WIDGET
I  WordPress
NEXT
May 2014 4
1.1. HTML Text Widget – What is it?
I  WordPress
HTML Text Widget
HTML = HyperLink Text Markup Language, is used for creating
Website or Web Application.
 It has its own syntax (code) to instruct the Web Browser to “draw”
Web Interface, or to implement some commands.
 HTML is the Fundamental for any Web Technology (Both ASP,
ASP.NET, PHP, JSP … “understand” HTML codes)
 HTML codes are easy to learn and work!
May 2014 5
1.1. HTML Text Widget – What is it?
I  WordPress
HTML Text Widget
WordPress offers users this Text Widget for making their own
extra things (e.g: Social Link Buttons, Favorite Music Playlist,
YouTube, Flickr, …)
Just write simple HTML codes, then enjoy!
May 2014 6
1. HTML TEXT WIDGET
I  WordPress
NEXT
May 2014 7
1.2. HTML Text Widget – Some Applications
I  WordPress
May 2014 8
Live Action
I  WordPress
1. Login your WordPress Site
2. Go to your Admin’s Dashboard
May 2014 9
Admin Dashboard
3. Scroll to “Appearance”
4. Select “Widgets”
May 2014 10
5. Seek for “Text Widget”
6. Choose this Text Widget to your
side bar
May 2014 11
7. Write or Paste your
HTML codes here …
May 2014 12
2. Building some extra things
I  WordPress
NEXT
May 2014 13
2.1. Building your own Social Buttons
I  WordPress
We can create this easily with
ONLY 2 LINES of HTML code
(for each Social Button)
 To hold our Social Link  using HTML tag <a>
 To show visitors Social Icon to click on  using HTML
tag <img>
May 2014 14
2.1. Building your own Social Buttons (cont’d)
I  WordPress
 Our “recipe”:
 For the tag <a>
<a href=“your_web_address”
target=“_Blank” title=“your_title” >
Put some text or image
here …
</a>
a: HTML tag to “anchor” our Link
href: syntax for the Web Browser
know where our Link refers
target=“_Blank”: open New
Window for a Web page
title: to show visitors “prompt” when
they hover their mouse on our Social
Button (eg.: “We are on Facebook”)
May 2014 15
2.1. Building your own Social Buttons (cont’d)
I  WordPress
 Our “recipe” (cont’d):
 For the tag <img>
< img src=“your_image_link”
width=“80px” alt=“your_image_here” >
width: the “breadth” attribute, in “pixel”
alt: Text represents when the image is
lost or cannot be loaded
src: to show the Path of stored
image on Web Server
img: HTML tag to show our image
May 2014 16
2.1. Building your own Social Buttons (cont’d)
I  WordPress
 Live codes:
 For Facebook:
<a href=“http://www.facebook.com/your_page”
target=“_Blank” title=“I’m on Facebook” >
We will have the tag <a> ()
nests the tag <img> ()

</a>
<img src=“fb_icon_link” width=“80px” alt=“fb_icon_here”>
&nbsp; To draw a “space” between
each Social Button
/* Do the same for other Social Buttons (Twitter, Google Plus, etc.) */
/* There are many FREE Social Icons on the Internet to “grab” Link & enjoy */
May 2014 17
Choose FREE & Beautiful Social Icons
I  WordPress
1. Go to “search”
May 2014 18
Choose FREE & Beautiful Social Icons
I  WordPress
2. Image Result
May 2014 19
Choose FREE & Beautiful Social Icons
I  WordPress
3. Pick a Free Icon & Grab its Link (Right Click)
May 2014 20
Choose FREE & Beautiful Social Icons
I  WordPress
4. Choose the Link & Paste it to your < img src = “…”
May 2014 21
Social Buttons – Live Demo
I  WordPress
NEXT
Let’s visit this WordPress Site:
http://applefantips.wordpress.com
May 2014 22
2. Building some extra things (cont’d)
I  WordPress
NEXT
May 2014 23
2.2. Adding your favorites - Music Playlist
I  WordPress
WordPress has been
Partner with
To offer users the
Music feature for FREE
(with limit)
(*) The SoundCloud FREE offer is limited to
2 hours of Total Song Duration
All things we need are just Sign In (or Sign up)
SoundCloud  Create or Select the Set of
Songs we like, then SoundCloud will give us the
HTML Generated Code to embed into our
WordPress
May 2014 24
1. Go to SoundCloud
May 2014 25
2. Search for a playlist
May 2014 26
3. Hit “Share”
May 2014 27
Pick the “Embed” Tab
May 2014 28
4. In the “Embed” tab,
scroll down & Expand
the Options
5. Pick the HTML Generated
Code for WordPress
May 2014 29
6. Paste it to your Text Widget
May 2014 30
All done!
May 2014 31
Music Playlist – Live Demo
I  WordPress
NEXT
Let’s visit this WordPress Site:
http://mywpblogdemo.wordpress.com
May 2014 32
2. Building some extra things (cont’d)
I  WordPress
NEXT
May 2014 33
2.2. Adding your favorites - Flickr
I  WordPress
Flickr is the Large & FREE
online sharing Photo service
of Yahoo!
We can “embed” our favorite Flickr
Gallery by the 2 HTML codes
 To hold our favorite Gallery Link  using HTML tag <a>
 To show visitors the Cover Photo to click on  using HTML
tag <img>
/* Do the same as the above section (2.1) “Building your own Social
Buttons” */
May 2014 34
2.2. Adding your favorites - Flickr
I  WordPress
 Live codes:
<a href=“Flickr_Gallery_Link” target=“_Blank”>
</a>
<img src=“Cover_Photo_link” width=“200px”>
Next, we will have some “snapshots” to show how to “catch” the 2
links above easily.
Let’s begin! 
May 2014 35
1. Go to Flickr
May 2014 36
2. Search a Flickr photo to add to the Favorite Gallery
May 2014 37
3. Pick a Flickr photo to add to the Favorite Gallery
Remember to
“like”  - to
encourage its
photographer
May 2014 38
4. Go to the your Flickr Gallery
May 2014 39
5. Choose the “Light box” View
May 2014 40
6. Grab the Light Box Link below, to add to <a href=“ …”
May 2014 41
7. Choose a Cover Photo to display on WordPress
(For example, we select this “Red Leave”
to be our Cover Photo)
May 2014 42
8. Grab its Link (Right Click), to add to <img src=“ …”
May 2014 43
9. We will have the Full & Simple HTML codes (<a> nests <img>)
May 2014 44
The Result
When we click on
the Cover Photo,
it will direct us to
the “Image Slide
Show”
May 2014 45
“Image Slide Show”
May 2014 46
2. Building some extra things (cont’d)
I  WordPress
NEXT
May 2014 47
2.2. Adding your favorites - YouTube
I  WordPress
WordPress allowed users
to add YouTube Video or
YouTube Playlist to any
WordPress Site.
Just “Pick” a YouTube Video or YouTube
Playlist you love, then paste their
generated codes to WordPress
(*) WordPress may also correct that code,
but it still displays properly the embedded
YouTube Videos.
LIVE ACTION
May 2014 48
1. Go to YouTube & find your favorite playlist
May 2014 49
2. Hit “Share”, then choose “Embed”
Share this
Embed this
May 2014 50
Paste that generated code to
your HTML Text Widget.
See what’s different?
(*) WordPress has corrected it,
but it’s still OK
May 2014 51
Flickr, YouTube – Live Demo
I  WordPress
NEXT
Let’s visit this WordPress Site:
http://lukhachquan.wordpress.com
May 2014 52
3. Suggestion & Notes
I  WordPress
NEXT
May 2014 53
3. Suggestion & Notes
I  WordPress
 Wordpress HTML Text Widget for FREE Site only accepts
HTML tags (Free Wordpress sites are recognized as:
sitename.wordpress.com)
 If you want to do more with JavaScripts (e.g.: to run
AdsWord in Wordpress HTML Text Widget), you need a Self
– Hosted Wordpress Site (that’s recognized as yoursite.com,
etc.)
 YouTube, SoundCloud … are allowed to embed into
WordPress sites, while the others are not. So, the 2 HTML
Codes which <a> nests <img> will help you build your own
things with HTML Text Widget.
May 2014 54
4. Conclusion
I  WordPress
NEXT
May 2014 55
4. Conclusion
I  WordPress
 All Demos above just show us that, with WordPress HTML
Text Widget, we can do by ourselves many things we want.
 Visit my site to discover more:
http://anhnguyen88.wordpress.com
May 2014 56
THANK YOU!
I  WordPress
May 2014 57
Appendix: About the presenter
I  WordPress
Anh Thien (Alice Ng.)
Web Developer, WordPress Enthusiast
Reach me at: thecoder2013@gmail.com
Another Project I’m working on:
HTML5 Music Playlist

More Related Content

What's hot

Oflta Web Tools For Wiki Use
Oflta Web Tools For Wiki UseOflta Web Tools For Wiki Use
Oflta Web Tools For Wiki UseDonna Shelton
 
Wordpress for Business
Wordpress for BusinessWordpress for Business
Wordpress for BusinessAndrew Marks
 
Reynolds Twitter Tools' Comparison Webinar
Reynolds Twitter Tools' Comparison WebinarReynolds Twitter Tools' Comparison Webinar
Reynolds Twitter Tools' Comparison WebinarPaula Belyeu
 
How to install wordpress on yahoo hosting
How to install wordpress on yahoo hostingHow to install wordpress on yahoo hosting
How to install wordpress on yahoo hostingSarah Zidan
 
How to install wordpress on yahoo hosting
How to install wordpress on yahoo hostingHow to install wordpress on yahoo hosting
How to install wordpress on yahoo hostingSarah Zidan
 
How to create user friendly blog in wordpress
How to create user friendly blog in wordpressHow to create user friendly blog in wordpress
How to create user friendly blog in wordpressJustConnect
 
How to embed Dailymotion videos on Tumblr with your syndication key
How to embed Dailymotion videos on Tumblr with your syndication keyHow to embed Dailymotion videos on Tumblr with your syndication key
How to embed Dailymotion videos on Tumblr with your syndication keyDailymotion Publisher Network
 
Lets Blog Edublogs Inset 18 01 10
Lets Blog Edublogs Inset 18 01 10Lets Blog Edublogs Inset 18 01 10
Lets Blog Edublogs Inset 18 01 10Sarah Ferretti
 
Real Estate Blog International Author Selection And Set Up
Real Estate Blog International Author Selection And Set UpReal Estate Blog International Author Selection And Set Up
Real Estate Blog International Author Selection And Set Uprebloginternational
 
How to publish Dailymotion videos with your syndication key on Twitter
How to publish Dailymotion videos with your syndication key on TwitterHow to publish Dailymotion videos with your syndication key on Twitter
How to publish Dailymotion videos with your syndication key on TwitterDailymotion Publisher Network
 
Adding or modifying zen portfolios avatar
Adding or modifying zen portfolios avatarAdding or modifying zen portfolios avatar
Adding or modifying zen portfolios avatarCyri Jones
 

What's hot (13)

Oflta Web Tools For Wiki Use
Oflta Web Tools For Wiki UseOflta Web Tools For Wiki Use
Oflta Web Tools For Wiki Use
 
Wordpress for Business
Wordpress for BusinessWordpress for Business
Wordpress for Business
 
Tips for Setting up a WordPress Blog
Tips for Setting up a WordPress BlogTips for Setting up a WordPress Blog
Tips for Setting up a WordPress Blog
 
twitter sites or coins
twitter sites or coinstwitter sites or coins
twitter sites or coins
 
Reynolds Twitter Tools' Comparison Webinar
Reynolds Twitter Tools' Comparison WebinarReynolds Twitter Tools' Comparison Webinar
Reynolds Twitter Tools' Comparison Webinar
 
How to install wordpress on yahoo hosting
How to install wordpress on yahoo hostingHow to install wordpress on yahoo hosting
How to install wordpress on yahoo hosting
 
How to install wordpress on yahoo hosting
How to install wordpress on yahoo hostingHow to install wordpress on yahoo hosting
How to install wordpress on yahoo hosting
 
How to create user friendly blog in wordpress
How to create user friendly blog in wordpressHow to create user friendly blog in wordpress
How to create user friendly blog in wordpress
 
How to embed Dailymotion videos on Tumblr with your syndication key
How to embed Dailymotion videos on Tumblr with your syndication keyHow to embed Dailymotion videos on Tumblr with your syndication key
How to embed Dailymotion videos on Tumblr with your syndication key
 
Lets Blog Edublogs Inset 18 01 10
Lets Blog Edublogs Inset 18 01 10Lets Blog Edublogs Inset 18 01 10
Lets Blog Edublogs Inset 18 01 10
 
Real Estate Blog International Author Selection And Set Up
Real Estate Blog International Author Selection And Set UpReal Estate Blog International Author Selection And Set Up
Real Estate Blog International Author Selection And Set Up
 
How to publish Dailymotion videos with your syndication key on Twitter
How to publish Dailymotion videos with your syndication key on TwitterHow to publish Dailymotion videos with your syndication key on Twitter
How to publish Dailymotion videos with your syndication key on Twitter
 
Adding or modifying zen portfolios avatar
Adding or modifying zen portfolios avatarAdding or modifying zen portfolios avatar
Adding or modifying zen portfolios avatar
 

Viewers also liked (13)

Lect03 slides
Lect03 slidesLect03 slides
Lect03 slides
 
2010 12-01 - chiffres clés
2010 12-01 - chiffres clés2010 12-01 - chiffres clés
2010 12-01 - chiffres clés
 
Enpresarean
EnpresareanEnpresarean
Enpresarean
 
P.P.P. MY LAST VACATION
P.P.P. MY LAST VACATIONP.P.P. MY LAST VACATION
P.P.P. MY LAST VACATION
 
90 tecnicas de rrpp
90 tecnicas de rrpp90 tecnicas de rrpp
90 tecnicas de rrpp
 
Đặt vé máy bay Vietnam airlines, Vietjet, Jetstar giá rẻ
Đặt vé máy bay Vietnam airlines, Vietjet, Jetstar giá rẻĐặt vé máy bay Vietnam airlines, Vietjet, Jetstar giá rẻ
Đặt vé máy bay Vietnam airlines, Vietjet, Jetstar giá rẻ
 
Infographic final
Infographic   finalInfographic   final
Infographic final
 
Summer Task - MATHS - Yr 12 preparation
Summer Task - MATHS - Yr 12 preparationSummer Task - MATHS - Yr 12 preparation
Summer Task - MATHS - Yr 12 preparation
 
Encueastamen
EncueastamenEncueastamen
Encueastamen
 
Excitement And Pbl
Excitement And PblExcitement And Pbl
Excitement And Pbl
 
Empathy map school to work transition d school assignment
Empathy map school to work transition d school assignmentEmpathy map school to work transition d school assignment
Empathy map school to work transition d school assignment
 
Minuta 5 marianela rodolfo y aida 1
Minuta 5 marianela rodolfo y aida 1Minuta 5 marianela rodolfo y aida 1
Minuta 5 marianela rodolfo y aida 1
 
Viglacera
ViglaceraViglacera
Viglacera
 

Similar to Saigon Wordpress Meetup - Wordpress HTML Text Widget - Thien Anh

What is WordPress.docx
What is WordPress.docxWhat is WordPress.docx
What is WordPress.docxMuqddasAkhtar4
 
Getting to Know WordPress May 2015
Getting to Know WordPress May 2015Getting to Know WordPress May 2015
Getting to Know WordPress May 2015Anthony Hortin
 
Getting to know WordPress
Getting to know WordPressGetting to know WordPress
Getting to know WordPressAnthony Hortin
 
Introduction to Jetpack- WordCamp Chicago 2014
Introduction to Jetpack- WordCamp Chicago 2014Introduction to Jetpack- WordCamp Chicago 2014
Introduction to Jetpack- WordCamp Chicago 2014Michele Butcher-Jones
 
Do it-yourself WordPress Website & SEO Workshop - june 25, 2014
Do it-yourself WordPress Website & SEO Workshop - june 25, 2014Do it-yourself WordPress Website & SEO Workshop - june 25, 2014
Do it-yourself WordPress Website & SEO Workshop - june 25, 2014Ella J Designs
 
MA Magazines: City Uni - Further Wordpress customisations, process and plugin...
MA Magazines: City Uni - Further Wordpress customisations, process and plugin...MA Magazines: City Uni - Further Wordpress customisations, process and plugin...
MA Magazines: City Uni - Further Wordpress customisations, process and plugin...Dan Davies
 
Designing for Social Media
Designing for Social MediaDesigning for Social Media
Designing for Social MediaEric T. Tung
 
GeekFolder.com
GeekFolder.comGeekFolder.com
GeekFolder.combalasatya
 
Creating Customizable Widgets for Unpredictable Needs
Creating Customizable Widgets for Unpredictable NeedsCreating Customizable Widgets for Unpredictable Needs
Creating Customizable Widgets for Unpredictable NeedsAmanda Giles
 
Build the Perfect WordPress Website
Build the Perfect WordPress WebsiteBuild the Perfect WordPress Website
Build the Perfect WordPress WebsiteSinergia Labs
 
WordPress for Entrepreneurs Management of your own website
WordPress for Entrepreneurs Management of your own websiteWordPress for Entrepreneurs Management of your own website
WordPress for Entrepreneurs Management of your own websiteLaurence Svekis ✔
 
Build Your Own Portfolio Website
Build Your Own Portfolio WebsiteBuild Your Own Portfolio Website
Build Your Own Portfolio WebsiteInner Ear
 
Add ChatGPT to WordPress A Step-by-Step Guide for Beginners.pdf
Add ChatGPT to WordPress A Step-by-Step Guide for Beginners.pdfAdd ChatGPT to WordPress A Step-by-Step Guide for Beginners.pdf
Add ChatGPT to WordPress A Step-by-Step Guide for Beginners.pdfWPWeb Infotech
 
Student guide for creating a blog on www.wordpress.com
Student guide for creating a blog on www.wordpress.comStudent guide for creating a blog on www.wordpress.com
Student guide for creating a blog on www.wordpress.comSohail Siddiqi
 
How can i add hi slider into an existing web page by using hi slider
How can i add hi slider into an existing web page by using hi sliderHow can i add hi slider into an existing web page by using hi slider
How can i add hi slider into an existing web page by using hi sliderhi-slider
 
Wordpress (Theme,Widget,plugins)
Wordpress (Theme,Widget,plugins)Wordpress (Theme,Widget,plugins)
Wordpress (Theme,Widget,plugins)Rathod Shukar
 
WordPress for Content Editors
WordPress for Content EditorsWordPress for Content Editors
WordPress for Content EditorsMilan van Bruggen
 
Appendix B, Web 2.0 and Social Media for Business, 3rd Edition
Appendix B, Web 2.0 and Social Media for Business, 3rd EditionAppendix B, Web 2.0 and Social Media for Business, 3rd Edition
Appendix B, Web 2.0 and Social Media for Business, 3rd EditionRoger McHaney
 

Similar to Saigon Wordpress Meetup - Wordpress HTML Text Widget - Thien Anh (20)

What is WordPress.docx
What is WordPress.docxWhat is WordPress.docx
What is WordPress.docx
 
Getting to Know WordPress May 2015
Getting to Know WordPress May 2015Getting to Know WordPress May 2015
Getting to Know WordPress May 2015
 
Getting to know WordPress
Getting to know WordPressGetting to know WordPress
Getting to know WordPress
 
Introduction to Jetpack- WordCamp Chicago 2014
Introduction to Jetpack- WordCamp Chicago 2014Introduction to Jetpack- WordCamp Chicago 2014
Introduction to Jetpack- WordCamp Chicago 2014
 
Do it-yourself WordPress Website & SEO Workshop - june 25, 2014
Do it-yourself WordPress Website & SEO Workshop - june 25, 2014Do it-yourself WordPress Website & SEO Workshop - june 25, 2014
Do it-yourself WordPress Website & SEO Workshop - june 25, 2014
 
MA Magazines: City Uni - Further Wordpress customisations, process and plugin...
MA Magazines: City Uni - Further Wordpress customisations, process and plugin...MA Magazines: City Uni - Further Wordpress customisations, process and plugin...
MA Magazines: City Uni - Further Wordpress customisations, process and plugin...
 
Designing for Social Media
Designing for Social MediaDesigning for Social Media
Designing for Social Media
 
GeekFolder.com
GeekFolder.comGeekFolder.com
GeekFolder.com
 
Creating Customizable Widgets for Unpredictable Needs
Creating Customizable Widgets for Unpredictable NeedsCreating Customizable Widgets for Unpredictable Needs
Creating Customizable Widgets for Unpredictable Needs
 
Blog Pres
Blog PresBlog Pres
Blog Pres
 
Build the Perfect WordPress Website
Build the Perfect WordPress WebsiteBuild the Perfect WordPress Website
Build the Perfect WordPress Website
 
WordPress for Entrepreneurs Management of your own website
WordPress for Entrepreneurs Management of your own websiteWordPress for Entrepreneurs Management of your own website
WordPress for Entrepreneurs Management of your own website
 
Build Your Own Portfolio Website
Build Your Own Portfolio WebsiteBuild Your Own Portfolio Website
Build Your Own Portfolio Website
 
Add ChatGPT to WordPress A Step-by-Step Guide for Beginners.pdf
Add ChatGPT to WordPress A Step-by-Step Guide for Beginners.pdfAdd ChatGPT to WordPress A Step-by-Step Guide for Beginners.pdf
Add ChatGPT to WordPress A Step-by-Step Guide for Beginners.pdf
 
Blog basics
Blog basicsBlog basics
Blog basics
 
Student guide for creating a blog on www.wordpress.com
Student guide for creating a blog on www.wordpress.comStudent guide for creating a blog on www.wordpress.com
Student guide for creating a blog on www.wordpress.com
 
How can i add hi slider into an existing web page by using hi slider
How can i add hi slider into an existing web page by using hi sliderHow can i add hi slider into an existing web page by using hi slider
How can i add hi slider into an existing web page by using hi slider
 
Wordpress (Theme,Widget,plugins)
Wordpress (Theme,Widget,plugins)Wordpress (Theme,Widget,plugins)
Wordpress (Theme,Widget,plugins)
 
WordPress for Content Editors
WordPress for Content EditorsWordPress for Content Editors
WordPress for Content Editors
 
Appendix B, Web 2.0 and Social Media for Business, 3rd Edition
Appendix B, Web 2.0 and Social Media for Business, 3rd EditionAppendix B, Web 2.0 and Social Media for Business, 3rd Edition
Appendix B, Web 2.0 and Social Media for Business, 3rd Edition
 

More from Triết Sài Gòn

Hạnh Phúc Tùy Cách Nhìn
Hạnh Phúc Tùy Cách NhìnHạnh Phúc Tùy Cách Nhìn
Hạnh Phúc Tùy Cách NhìnTriết Sài Gòn
 
Saigon Wordpress Meetup - Themes Wordpress Meetup
Saigon Wordpress Meetup - Themes Wordpress MeetupSaigon Wordpress Meetup - Themes Wordpress Meetup
Saigon Wordpress Meetup - Themes Wordpress MeetupTriết Sài Gòn
 
Saigon Wordpress Meetup - How customers and developers understand each others...
Saigon Wordpress Meetup - How customers and developers understand each others...Saigon Wordpress Meetup - How customers and developers understand each others...
Saigon Wordpress Meetup - How customers and developers understand each others...Triết Sài Gòn
 
Saigon Wordpress Meetup - Building Sites With WordPress Opening Remarks - Dat...
Saigon Wordpress Meetup - Building Sites With WordPress Opening Remarks - Dat...Saigon Wordpress Meetup - Building Sites With WordPress Opening Remarks - Dat...
Saigon Wordpress Meetup - Building Sites With WordPress Opening Remarks - Dat...Triết Sài Gòn
 
Saigon Wordpress Meetup - Building a business around a WordPress plugin - Amir
Saigon Wordpress Meetup - Building a business around a WordPress plugin - AmirSaigon Wordpress Meetup - Building a business around a WordPress plugin - Amir
Saigon Wordpress Meetup - Building a business around a WordPress plugin - AmirTriết Sài Gòn
 
Saigon Wordpress Meetup - Best practices for plugin development - A WordPress...
Saigon Wordpress Meetup - Best practices for plugin development - A WordPress...Saigon Wordpress Meetup - Best practices for plugin development - A WordPress...
Saigon Wordpress Meetup - Best practices for plugin development - A WordPress...Triết Sài Gòn
 

More from Triết Sài Gòn (6)

Hạnh Phúc Tùy Cách Nhìn
Hạnh Phúc Tùy Cách NhìnHạnh Phúc Tùy Cách Nhìn
Hạnh Phúc Tùy Cách Nhìn
 
Saigon Wordpress Meetup - Themes Wordpress Meetup
Saigon Wordpress Meetup - Themes Wordpress MeetupSaigon Wordpress Meetup - Themes Wordpress Meetup
Saigon Wordpress Meetup - Themes Wordpress Meetup
 
Saigon Wordpress Meetup - How customers and developers understand each others...
Saigon Wordpress Meetup - How customers and developers understand each others...Saigon Wordpress Meetup - How customers and developers understand each others...
Saigon Wordpress Meetup - How customers and developers understand each others...
 
Saigon Wordpress Meetup - Building Sites With WordPress Opening Remarks - Dat...
Saigon Wordpress Meetup - Building Sites With WordPress Opening Remarks - Dat...Saigon Wordpress Meetup - Building Sites With WordPress Opening Remarks - Dat...
Saigon Wordpress Meetup - Building Sites With WordPress Opening Remarks - Dat...
 
Saigon Wordpress Meetup - Building a business around a WordPress plugin - Amir
Saigon Wordpress Meetup - Building a business around a WordPress plugin - AmirSaigon Wordpress Meetup - Building a business around a WordPress plugin - Amir
Saigon Wordpress Meetup - Building a business around a WordPress plugin - Amir
 
Saigon Wordpress Meetup - Best practices for plugin development - A WordPress...
Saigon Wordpress Meetup - Best practices for plugin development - A WordPress...Saigon Wordpress Meetup - Best practices for plugin development - A WordPress...
Saigon Wordpress Meetup - Best practices for plugin development - A WordPress...
 

Recently uploaded

定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一Fs
 
Blepharitis inflammation of eyelid symptoms cause everything included along w...
Blepharitis inflammation of eyelid symptoms cause everything included along w...Blepharitis inflammation of eyelid symptoms cause everything included along w...
Blepharitis inflammation of eyelid symptoms cause everything included along w...Excelmac1
 
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012rehmti665
 
Call Girls Near The Suryaa Hotel New Delhi 9873777170
Call Girls Near The Suryaa Hotel New Delhi 9873777170Call Girls Near The Suryaa Hotel New Delhi 9873777170
Call Girls Near The Suryaa Hotel New Delhi 9873777170Sonam Pathan
 
Git and Github workshop GDSC MLRITM
Git and Github  workshop GDSC MLRITMGit and Github  workshop GDSC MLRITM
Git and Github workshop GDSC MLRITMgdsc13
 
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一Fs
 
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130  Available With RoomVIP Kolkata Call Girl Kestopur 👉 8250192130  Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Roomdivyansh0kumar0
 
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170Sonam Pathan
 
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一z xss
 
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一Fs
 
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一Fs
 
VIP Call Girls Kolkata Ananya 🤌 8250192130 🚀 Vip Call Girls Kolkata
VIP Call Girls Kolkata Ananya 🤌  8250192130 🚀 Vip Call Girls KolkataVIP Call Girls Kolkata Ananya 🤌  8250192130 🚀 Vip Call Girls Kolkata
VIP Call Girls Kolkata Ananya 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)Christopher H Felton
 
定制(CC毕业证书)美国美国社区大学毕业证成绩单原版一比一
定制(CC毕业证书)美国美国社区大学毕业证成绩单原版一比一定制(CC毕业证书)美国美国社区大学毕业证成绩单原版一比一
定制(CC毕业证书)美国美国社区大学毕业证成绩单原版一比一3sw2qly1
 
Magic exist by Marta Loveguard - presentation.pptx
Magic exist by Marta Loveguard - presentation.pptxMagic exist by Marta Loveguard - presentation.pptx
Magic exist by Marta Loveguard - presentation.pptxMartaLoveguard
 
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)Dana Luther
 
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作ys8omjxb
 
Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24Paul Calvano
 

Recently uploaded (20)

定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
 
Blepharitis inflammation of eyelid symptoms cause everything included along w...
Blepharitis inflammation of eyelid symptoms cause everything included along w...Blepharitis inflammation of eyelid symptoms cause everything included along w...
Blepharitis inflammation of eyelid symptoms cause everything included along w...
 
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
 
Call Girls Near The Suryaa Hotel New Delhi 9873777170
Call Girls Near The Suryaa Hotel New Delhi 9873777170Call Girls Near The Suryaa Hotel New Delhi 9873777170
Call Girls Near The Suryaa Hotel New Delhi 9873777170
 
Git and Github workshop GDSC MLRITM
Git and Github  workshop GDSC MLRITMGit and Github  workshop GDSC MLRITM
Git and Github workshop GDSC MLRITM
 
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
 
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130  Available With RoomVIP Kolkata Call Girl Kestopur 👉 8250192130  Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
 
Hot Sexy call girls in Rk Puram 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in  Rk Puram 🔝 9953056974 🔝 Delhi escort ServiceHot Sexy call girls in  Rk Puram 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Rk Puram 🔝 9953056974 🔝 Delhi escort Service
 
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
 
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
 
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
 
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
 
VIP Call Girls Kolkata Ananya 🤌 8250192130 🚀 Vip Call Girls Kolkata
VIP Call Girls Kolkata Ananya 🤌  8250192130 🚀 Vip Call Girls KolkataVIP Call Girls Kolkata Ananya 🤌  8250192130 🚀 Vip Call Girls Kolkata
VIP Call Girls Kolkata Ananya 🤌 8250192130 🚀 Vip Call Girls Kolkata
 
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
 
定制(CC毕业证书)美国美国社区大学毕业证成绩单原版一比一
定制(CC毕业证书)美国美国社区大学毕业证成绩单原版一比一定制(CC毕业证书)美国美国社区大学毕业证成绩单原版一比一
定制(CC毕业证书)美国美国社区大学毕业证成绩单原版一比一
 
Magic exist by Marta Loveguard - presentation.pptx
Magic exist by Marta Loveguard - presentation.pptxMagic exist by Marta Loveguard - presentation.pptx
Magic exist by Marta Loveguard - presentation.pptx
 
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
 
young call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Service
young call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Service
young call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Service
 
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
 
Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24
 

Saigon Wordpress Meetup - Wordpress HTML Text Widget - Thien Anh

  • 1. Using the WordPress HTML Text Widget To Build Some Extra Things Presented by: Anh Thien (Alice Ng.) Web Developer, WordPress Enthusiast I  WordPress
  • 2. May 2014 2 Agenda I  WordPress 1. HTML Text Widget – What is it? 1.1. Definition 1.2. Its Applications 2. Building some extra things 2.2. Adding your favorites: Music Playlist, Flickr, YouTube 2.1. Building your own Social Buttons 4. Conclusion 3. Suggestion & Notes
  • 3. May 2014 3 1. HTML TEXT WIDGET I  WordPress NEXT
  • 4. May 2014 4 1.1. HTML Text Widget – What is it? I  WordPress HTML Text Widget HTML = HyperLink Text Markup Language, is used for creating Website or Web Application.  It has its own syntax (code) to instruct the Web Browser to “draw” Web Interface, or to implement some commands.  HTML is the Fundamental for any Web Technology (Both ASP, ASP.NET, PHP, JSP … “understand” HTML codes)  HTML codes are easy to learn and work!
  • 5. May 2014 5 1.1. HTML Text Widget – What is it? I  WordPress HTML Text Widget WordPress offers users this Text Widget for making their own extra things (e.g: Social Link Buttons, Favorite Music Playlist, YouTube, Flickr, …) Just write simple HTML codes, then enjoy!
  • 6. May 2014 6 1. HTML TEXT WIDGET I  WordPress NEXT
  • 7. May 2014 7 1.2. HTML Text Widget – Some Applications I  WordPress
  • 8. May 2014 8 Live Action I  WordPress 1. Login your WordPress Site 2. Go to your Admin’s Dashboard
  • 9. May 2014 9 Admin Dashboard 3. Scroll to “Appearance” 4. Select “Widgets”
  • 10. May 2014 10 5. Seek for “Text Widget” 6. Choose this Text Widget to your side bar
  • 11. May 2014 11 7. Write or Paste your HTML codes here …
  • 12. May 2014 12 2. Building some extra things I  WordPress NEXT
  • 13. May 2014 13 2.1. Building your own Social Buttons I  WordPress We can create this easily with ONLY 2 LINES of HTML code (for each Social Button)  To hold our Social Link  using HTML tag <a>  To show visitors Social Icon to click on  using HTML tag <img>
  • 14. May 2014 14 2.1. Building your own Social Buttons (cont’d) I  WordPress  Our “recipe”:  For the tag <a> <a href=“your_web_address” target=“_Blank” title=“your_title” > Put some text or image here … </a> a: HTML tag to “anchor” our Link href: syntax for the Web Browser know where our Link refers target=“_Blank”: open New Window for a Web page title: to show visitors “prompt” when they hover their mouse on our Social Button (eg.: “We are on Facebook”)
  • 15. May 2014 15 2.1. Building your own Social Buttons (cont’d) I  WordPress  Our “recipe” (cont’d):  For the tag <img> < img src=“your_image_link” width=“80px” alt=“your_image_here” > width: the “breadth” attribute, in “pixel” alt: Text represents when the image is lost or cannot be loaded src: to show the Path of stored image on Web Server img: HTML tag to show our image
  • 16. May 2014 16 2.1. Building your own Social Buttons (cont’d) I  WordPress  Live codes:  For Facebook: <a href=“http://www.facebook.com/your_page” target=“_Blank” title=“I’m on Facebook” > We will have the tag <a> () nests the tag <img> ()  </a> <img src=“fb_icon_link” width=“80px” alt=“fb_icon_here”> &nbsp; To draw a “space” between each Social Button /* Do the same for other Social Buttons (Twitter, Google Plus, etc.) */ /* There are many FREE Social Icons on the Internet to “grab” Link & enjoy */
  • 17. May 2014 17 Choose FREE & Beautiful Social Icons I  WordPress 1. Go to “search”
  • 18. May 2014 18 Choose FREE & Beautiful Social Icons I  WordPress 2. Image Result
  • 19. May 2014 19 Choose FREE & Beautiful Social Icons I  WordPress 3. Pick a Free Icon & Grab its Link (Right Click)
  • 20. May 2014 20 Choose FREE & Beautiful Social Icons I  WordPress 4. Choose the Link & Paste it to your < img src = “…”
  • 21. May 2014 21 Social Buttons – Live Demo I  WordPress NEXT Let’s visit this WordPress Site: http://applefantips.wordpress.com
  • 22. May 2014 22 2. Building some extra things (cont’d) I  WordPress NEXT
  • 23. May 2014 23 2.2. Adding your favorites - Music Playlist I  WordPress WordPress has been Partner with To offer users the Music feature for FREE (with limit) (*) The SoundCloud FREE offer is limited to 2 hours of Total Song Duration All things we need are just Sign In (or Sign up) SoundCloud  Create or Select the Set of Songs we like, then SoundCloud will give us the HTML Generated Code to embed into our WordPress
  • 24. May 2014 24 1. Go to SoundCloud
  • 25. May 2014 25 2. Search for a playlist
  • 26. May 2014 26 3. Hit “Share”
  • 27. May 2014 27 Pick the “Embed” Tab
  • 28. May 2014 28 4. In the “Embed” tab, scroll down & Expand the Options 5. Pick the HTML Generated Code for WordPress
  • 29. May 2014 29 6. Paste it to your Text Widget
  • 31. May 2014 31 Music Playlist – Live Demo I  WordPress NEXT Let’s visit this WordPress Site: http://mywpblogdemo.wordpress.com
  • 32. May 2014 32 2. Building some extra things (cont’d) I  WordPress NEXT
  • 33. May 2014 33 2.2. Adding your favorites - Flickr I  WordPress Flickr is the Large & FREE online sharing Photo service of Yahoo! We can “embed” our favorite Flickr Gallery by the 2 HTML codes  To hold our favorite Gallery Link  using HTML tag <a>  To show visitors the Cover Photo to click on  using HTML tag <img> /* Do the same as the above section (2.1) “Building your own Social Buttons” */
  • 34. May 2014 34 2.2. Adding your favorites - Flickr I  WordPress  Live codes: <a href=“Flickr_Gallery_Link” target=“_Blank”> </a> <img src=“Cover_Photo_link” width=“200px”> Next, we will have some “snapshots” to show how to “catch” the 2 links above easily. Let’s begin! 
  • 35. May 2014 35 1. Go to Flickr
  • 36. May 2014 36 2. Search a Flickr photo to add to the Favorite Gallery
  • 37. May 2014 37 3. Pick a Flickr photo to add to the Favorite Gallery Remember to “like”  - to encourage its photographer
  • 38. May 2014 38 4. Go to the your Flickr Gallery
  • 39. May 2014 39 5. Choose the “Light box” View
  • 40. May 2014 40 6. Grab the Light Box Link below, to add to <a href=“ …”
  • 41. May 2014 41 7. Choose a Cover Photo to display on WordPress (For example, we select this “Red Leave” to be our Cover Photo)
  • 42. May 2014 42 8. Grab its Link (Right Click), to add to <img src=“ …”
  • 43. May 2014 43 9. We will have the Full & Simple HTML codes (<a> nests <img>)
  • 44. May 2014 44 The Result When we click on the Cover Photo, it will direct us to the “Image Slide Show”
  • 45. May 2014 45 “Image Slide Show”
  • 46. May 2014 46 2. Building some extra things (cont’d) I  WordPress NEXT
  • 47. May 2014 47 2.2. Adding your favorites - YouTube I  WordPress WordPress allowed users to add YouTube Video or YouTube Playlist to any WordPress Site. Just “Pick” a YouTube Video or YouTube Playlist you love, then paste their generated codes to WordPress (*) WordPress may also correct that code, but it still displays properly the embedded YouTube Videos. LIVE ACTION
  • 48. May 2014 48 1. Go to YouTube & find your favorite playlist
  • 49. May 2014 49 2. Hit “Share”, then choose “Embed” Share this Embed this
  • 50. May 2014 50 Paste that generated code to your HTML Text Widget. See what’s different? (*) WordPress has corrected it, but it’s still OK
  • 51. May 2014 51 Flickr, YouTube – Live Demo I  WordPress NEXT Let’s visit this WordPress Site: http://lukhachquan.wordpress.com
  • 52. May 2014 52 3. Suggestion & Notes I  WordPress NEXT
  • 53. May 2014 53 3. Suggestion & Notes I  WordPress  Wordpress HTML Text Widget for FREE Site only accepts HTML tags (Free Wordpress sites are recognized as: sitename.wordpress.com)  If you want to do more with JavaScripts (e.g.: to run AdsWord in Wordpress HTML Text Widget), you need a Self – Hosted Wordpress Site (that’s recognized as yoursite.com, etc.)  YouTube, SoundCloud … are allowed to embed into WordPress sites, while the others are not. So, the 2 HTML Codes which <a> nests <img> will help you build your own things with HTML Text Widget.
  • 54. May 2014 54 4. Conclusion I  WordPress NEXT
  • 55. May 2014 55 4. Conclusion I  WordPress  All Demos above just show us that, with WordPress HTML Text Widget, we can do by ourselves many things we want.  Visit my site to discover more: http://anhnguyen88.wordpress.com
  • 56. May 2014 56 THANK YOU! I  WordPress
  • 57. May 2014 57 Appendix: About the presenter I  WordPress Anh Thien (Alice Ng.) Web Developer, WordPress Enthusiast Reach me at: thecoder2013@gmail.com Another Project I’m working on: HTML5 Music Playlist