<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.ubc.ca/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=TonyChang</id>
	<title>UBC Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.ubc.ca/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=TonyChang"/>
	<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/Special:Contributions/TonyChang"/>
	<updated>2026-05-12T20:04:52Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Documentation:UBC_Content_Management_System/CLF_Theme/Loop&amp;diff=193506</id>
		<title>Documentation:UBC Content Management System/CLF Theme/Loop</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Documentation:UBC_Content_Management_System/CLF_Theme/Loop&amp;diff=193506"/>
		<updated>2012-09-26T22:33:31Z</updated>

		<summary type="html">&lt;p&gt;TonyChang: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox CMS}}&lt;br /&gt;
&#039;&#039;&#039;[loop]&#039;&#039;&#039; is a very powerful shortcode that allows you to customize the type of content to display. With this shortcode you can do anything [http://codex.wordpress.org/Function_Reference/query_posts mentioned here]. For more information on what kind of parameters are possible in the query parameter please see: [http://codex.wordpress.org/Class_Reference/WP_Query#Parameters WP Query Parameters].&lt;br /&gt;
&lt;br /&gt;
You can place the shortcode anywhere in the site.&lt;br /&gt;
==Attributes==&lt;br /&gt;
* query - the query that you want to retrieve from the database see [http://codex.wordpress.org/Function_Reference/query_posts some possibilities here]. &lt;br /&gt;
* rss - the url of the feed that you want to display,&lt;br /&gt;
* view - choose one  (full, archive, list) or create your own. &lt;br /&gt;
* pagination - by default pagination is false, only works with the query and not the rss.&lt;br /&gt;
* num - used in conjunction with the rss to display a limited set of item, &lt;br /&gt;
* error - what to display if there is no results can be found&lt;br /&gt;
&lt;br /&gt;
==Examples of Loop Usage==&lt;br /&gt;
Please find below several examples of [loop] usage. &lt;br /&gt;
&lt;br /&gt;
The following line placed in the main content area of the frontpage will display the latest 5 posts on the frontpage of the site:&lt;br /&gt;
&lt;br /&gt;
 [loop query=&amp;quot;posts_per_page=5&amp;quot; view=&amp;quot;archive&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following line placed in the main content area of the frontpage will display the latest 5 posts on the frontpage of the site, with pagination enabled to navigate to older posts:&lt;br /&gt;
&lt;br /&gt;
 [loop query=&amp;quot;posts_per_page=5&amp;quot; pagination=&amp;quot;true&amp;quot; view=&amp;quot;archive&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To combine parameters in the query, use the ampersand character (&#039;&amp;amp;&#039;). The following line displays 5 posts from the category SampleCategory:&lt;br /&gt;
&lt;br /&gt;
 [loop query=&amp;quot;posts_per_page=5&amp;amp;category_name=SampleCategory&amp;quot; view=&amp;quot;archive&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
[[File: Loop_shortcode_take2.png|thumb|centre|800px]]&lt;br /&gt;
&lt;br /&gt;
Here is how the outcome looks on the website:&lt;br /&gt;
&lt;br /&gt;
[[File: Loop_shortcode_take3.jpg|thumb|centre|800px]]&lt;br /&gt;
&lt;br /&gt;
You can use the following attributes for the &#039;&#039;view&#039;&#039; parameter:&lt;br /&gt;
*archive&lt;br /&gt;
*list&lt;br /&gt;
*full&lt;br /&gt;
&lt;br /&gt;
Below is another example of [loop] usage:&lt;br /&gt;
&lt;br /&gt;
 [loop query=&amp;quot;category_name=Conference&amp;quot;]&lt;br /&gt;
 &amp;lt;a href=&amp;quot;[the_permalink]&amp;quot;&amp;gt;[the_title]&amp;lt;/a&amp;gt;&lt;br /&gt;
 [the_excerpt] by [the_author] - Date: [last-updated]&lt;br /&gt;
 [/loop]&lt;br /&gt;
&lt;br /&gt;
[[File: Lop-shortcode1.png|thumb|centre|800px]]&lt;br /&gt;
&lt;br /&gt;
 You can use the following parameters within the &#039;&#039;[loop]&#039;&#039; shortcode:&lt;br /&gt;
 *[the_content]&lt;br /&gt;
 *[the_permalink]&lt;br /&gt;
 *[the_excerpt]&lt;br /&gt;
 *[the_author]&lt;br /&gt;
 *[the_title]&lt;br /&gt;
 *[the_date] (publish date of the post)&lt;br /&gt;
 *[last-updated]&lt;br /&gt;
 *[the_post_thumbnail]&lt;br /&gt;
 *[[Documentation:UBC Content Management System/CLF Theme/List of currently available shortcodes]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This example pulls all posts in the category &amp;quot;Conference&amp;quot; and displays the title, permalink, author, date and excerpt and thumbnail image if available.&lt;br /&gt;
&lt;br /&gt;
[[File: Loop-shortcode2.png|thumb|centre|800px]]&lt;br /&gt;
&lt;br /&gt;
You can also sort by custom field. For example:&lt;br /&gt;
&lt;br /&gt;
 [loop query=&amp;quot;posts_per_page=5&amp;amp;category_name=newsandevents&amp;amp;meta_key=event_date&amp;amp;orderby=meta_value&amp;amp;order=asc&amp;quot; view=&amp;quot;archive&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
You can also use loop shortcode with pages.&lt;br /&gt;
&lt;br /&gt;
For example, if you wish to dynamically pull a list of pages that use custom field &#039;color&#039;, regardless of the value of that custom field, you might do it with the help of a shortcode that looks like this:&lt;br /&gt;
&lt;br /&gt;
 [loop query=&amp;quot;post_per_page=5&amp;amp;post_type=page&amp;amp;meta_key=color&amp;quot; view=&amp;quot;list&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
To return all the posts in the February 2011, use the time parameters (see http://codex.wordpress.org/Class_Reference/WP_Query#Time_Parameters)&lt;br /&gt;
&lt;br /&gt;
 [loop query=&amp;quot;year=2011&amp;amp;monthnum=2&amp;quot; view=archive]&lt;br /&gt;
&lt;br /&gt;
[[Category:UBC CMS]]&lt;/div&gt;</summary>
		<author><name>TonyChang</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Documentation:UBC_Content_Management_System/CLF_Theme/Slideshow&amp;diff=183568</id>
		<title>Documentation:UBC Content Management System/CLF Theme/Slideshow</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Documentation:UBC_Content_Management_System/CLF_Theme/Slideshow&amp;diff=183568"/>
		<updated>2012-08-01T18:32:27Z</updated>

		<summary type="html">&lt;p&gt;TonyChang: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox CMS}}The &#039;&#039;[slideshow]&#039;&#039; [[Documentation:UBC_Content_Management_System/What_is_a_shortcode%3F|shortcode]] is used to make Spotlight Rotation appear anywhere in your site. &lt;br /&gt;
&lt;br /&gt;
By default Spotlight Rotation is set to appear on the Frontpage, however you can insert it on any page by using a shortcode:&lt;br /&gt;
&lt;br /&gt;
 [slideshow width=&amp;quot;560&amp;quot; height=&amp;quot;300&amp;quot;] &lt;br /&gt;
&lt;br /&gt;
(Note: width and height parameters correspond to image width and size). &lt;br /&gt;
&lt;br /&gt;
Parameters:&lt;br /&gt;
&lt;br /&gt;
* &amp;quot;width&amp;quot; - width of the slideshow&lt;br /&gt;
* &amp;quot;height&amp;quot; - height of the slideshow&lt;br /&gt;
* &amp;quot;category&amp;quot; - Category of posts to show&lt;br /&gt;
* &amp;quot;timeout&amp;quot; - Number of seconds between slides&lt;br /&gt;
* &amp;quot;speed&amp;quot; - Speed of slide transition in miliseconds&lt;br /&gt;
* &amp;quot;lookandfeel&amp;quot; - Type of slideshow to use. Possible values include: &#039;&#039;standard&#039;&#039;, &#039;&#039;gallery&#039;&#039;, &#039;&#039;blank&#039;&#039;, &#039;&#039;multi&#039;&#039;, &#039;&#039;transparent&#039;&#039; (See [[Documentation:UBC_Content_Management_System/CLF_Theme/How_to_insert_a_Spotlight_Rotation_in_a_Page|How to insert Spotlight rotation in a page]] for the look-and-feel previews)&lt;br /&gt;
* &amp;quot;effect&amp;quot; - Type of transition effect. Possible values include: &#039;&#039;fade&#039;&#039;, &#039;&#039;growX&#039;&#039;, &#039;&#039;scrollHorz&#039;&#039;, &#039;&#039;turnLeft&#039;&#039;, &#039;&#039;uncover&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Sample Shortcodes:&lt;br /&gt;
&lt;br /&gt;
 [slideshow width=&amp;quot;560&amp;quot; height=&amp;quot;300&amp;quot; category=&amp;quot;spotlight&amp;quot; lookandfeel=&amp;quot;gallery&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
 [slideshow width=&amp;quot;560&amp;quot; height=&amp;quot;300&amp;quot; category=&amp;quot;news&amp;quot; lookandfeel=&amp;quot;multi&amp;quot; timeout=&amp;quot;5&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
[[File:Slideshow_Shortcode.jpg|thumb|none|500px|Sample Slideshow Shortcode]]&lt;br /&gt;
[[File:4990811443_e7e0d58816_b.jpg|thumb|none|500px|The slideshow on the page]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:UBC CMS]]&lt;/div&gt;</summary>
		<author><name>TonyChang</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Documentation:UBC_Content_Management_System/CLF_Theme/How_to_insert_a_Spotlight_Rotation_in_a_Page&amp;diff=168620</id>
		<title>Documentation:UBC Content Management System/CLF Theme/How to insert a Spotlight Rotation in a Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Documentation:UBC_Content_Management_System/CLF_Theme/How_to_insert_a_Spotlight_Rotation_in_a_Page&amp;diff=168620"/>
		<updated>2012-05-11T20:22:02Z</updated>

		<summary type="html">&lt;p&gt;TonyChang: /* See Also */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox CMS}}The CLF Advanced WordPress theme allows you to create a Spotlight Rotation feature that could be placed on the [[Documentation:UBC_Content_Management_System/CLF_Theme/How_to_set_up_the_site%27s_homepage|Frontpage of your site]] (by default) or on any page of your site (using a specific shortcode).&lt;br /&gt;
&lt;br /&gt;
==Spotlight Rotation Styles==&lt;br /&gt;
The CLF theme offers you 5 possible styles for the Spotlight Rotation: &#039;&#039;UBC.ca Standard Spotlight&#039;&#039;, &#039;&#039;Horizontally Sliding Gallery&#039;&#039;, &#039;&#039;Blank Sliding&#039;&#039;, &#039;&#039;Transparent Sliding&#039;&#039;, and &#039;&#039; Multi post Sliding&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=308px heights=220px perrow=2&amp;gt;&lt;br /&gt;
File:UBC_Standard_Spotlight.jpg|[http://ubc.ca UBC.ca] Standard Spotlight&lt;br /&gt;
File:Horizontally_Sliding_Gallery.jpg|Horizontally Sliding Gallery&lt;br /&gt;
File:Blank_Sliding.jpg|Blank Sliding&lt;br /&gt;
File:Transparent_Sliding.jpg|Transparent Sliding&lt;br /&gt;
File:Multi_post_Sliding.jpg|Multi post Sliding&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Spotlight Rotation Set Up==&lt;br /&gt;
[[File:Spotlight_Rotation_Options.jpg|thumb|none|500px|Spotlight Rotation Set Up (click to enlarge)]]&lt;br /&gt;
(numbers on image correspond steps)&lt;br /&gt;
# Go to &#039;&#039;Appearance &amp;gt; Theme Options &amp;gt; Frontpage&#039;&#039; and scroll down to &#039;&#039;Spotlight Rotation Options&#039;&#039; section. &lt;br /&gt;
# Choose the look and feel of the Spotlight Rotation by selecting your [[#Spotlight Rotation Styles|spotlight rotation style]].&lt;br /&gt;
# Specify the [[Documentation:UBC Content Management System/Categories|category]] of posts you wish to see in your spotlight rotation. The spotlight rotation draws its content from the posts grouped in a specific category. Specify the category you want it to draw from. Generally it is a good idea to create a category like &amp;quot;Spotlight&amp;quot; or &amp;quot;Featured&amp;quot; that makes it easy to identify posts which you want to feature on your spotlight.  You can add a category by clicking on the &#039;&#039;Add Category&#039;&#039; link.&lt;br /&gt;
# &#039;&#039;Optional:&#039;&#039; You can also set the number of slides shown in the spotlight rotation. &#039;&#039;&#039;NOTE:&#039;&#039;&#039; the spotlight rotation will display the latest posts from the specified category, up to the number of slides you set here.&lt;br /&gt;
# &#039;&#039;Optional:&#039;&#039; The &amp;quot;Read More Button&amp;quot; checkbox enables a &amp;quot;Read More&amp;quot; button to appear on each slide which will take the user to the post that the slide is tied to. You may also enter custom text in the text field to replace the default &amp;quot;Read More&amp;quot; label.&lt;br /&gt;
# &#039;&#039;Optional:&#039;&#039; The image height of the slides can also be adjusted. This, however, is not recommended unless absolutely necessary.&lt;br /&gt;
# When you are done, click on the &#039;&#039;Save Changes&#039;&#039; button found at the top or bottom of the page.&lt;br /&gt;
&lt;br /&gt;
==Adding Content to the Spotlight Rotation==&lt;br /&gt;
#Edit or create a Post for the Spotlight content&lt;br /&gt;
#Make sure you have a short summary of your post under &amp;quot;Excerpt&amp;quot;&lt;br /&gt;
#You also need an image for the spotlight. For the best results the image should be &#039;&#039;&#039;560px X 300px&#039;&#039;&#039;. To upload an image:&lt;br /&gt;
#*Click on &amp;quot;Add an Image&amp;quot; button&lt;br /&gt;
#*Select the file either from your computer or from the Media Gallery&lt;br /&gt;
#*Click on &#039;&#039;Use as featured image&#039;&#039; link (this will ensure that the image will appear as a Spotlight Rotation)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;IMPORTANT:&#039;&#039;&#039; Make sure that the post is associated with Spotlight category or whatever category you created to pull the content from into the Spotlight rotation.&lt;br /&gt;
&lt;br /&gt;
[[File:Spotlight Rotation Featured Image.jpg|thumb|none|500px|Adding Featured Spotlight Rotation Image (click to enlarge)]]&lt;br /&gt;
&lt;br /&gt;
[[File:Spotlight_Rotation_Post_Category.jpg|thumb|none|500px|Spotlight Rotation Post Settings (click to enlarge)]]&lt;br /&gt;
&lt;br /&gt;
==Inserting Spotlight Rotation on Other Pages==&lt;br /&gt;
By default Spotlight Rotation is set to appear on the Frontpage, however you can insert Spotlight Rotation on any page by using the [[Documentation:UBC Content Management System/CLF Theme/Slideshow|slideshow shortcode]]: [slideshow width=&amp;quot;560&amp;quot; height=&amp;quot;300&amp;quot;].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE:&#039;&#039;&#039; Width and height parameters correspond to image width and height.&lt;br /&gt;
&lt;br /&gt;
[[File:4991417882_668a1d0753_b.jpg|thumb|none|500px|(click to enlarge)]]&lt;br /&gt;
&lt;br /&gt;
[[File:4990811443_e7e0d58816_b.jpg|thumb|none|500px|(click to enlarge)]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Changing the order of the slideshow==&lt;br /&gt;
The slideshow display follows the order chronological by the date of the post. For example, if Post #1 is published on March 15th, 2012 and Post #2 is published on March 16th 2012, then the slideshow will display Post #2 first and then Post #1. The published date can be modified in the Edit Post page. To change the order of the slideshow simply change the published date of post #2 to March 14th (or any date before the published date of post #1).&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/How_to/How_do_I_properly_remove_the_spotlight_slideshow_on_the_front_page%3F|Removing the slideshow from the front page]]&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/CLF_Theme/How_to_set_up_the_site%27s_homepage|Front page options]]&lt;br /&gt;
*[[Documentation:WordPress/Plugins/List#Portfolio_Slideshow|Portfolio slideshow]] Plugin to create a slideshow using all images uploaded to the page.&lt;br /&gt;
&lt;br /&gt;
[[Category:UBC CMS]]&lt;/div&gt;</summary>
		<author><name>TonyChang</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Documentation:UBC_Content_Management_System/Plugins/Create_HTML_Tables&amp;diff=154557</id>
		<title>Documentation:UBC Content Management System/Plugins/Create HTML Tables</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Documentation:UBC_Content_Management_System/Plugins/Create_HTML_Tables&amp;diff=154557"/>
		<updated>2012-03-22T23:04:40Z</updated>

		<summary type="html">&lt;p&gt;TonyChang: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox CMS}}&lt;br /&gt;
&lt;br /&gt;
The default Wordpress HTML editor does not have buttons to add tables into the pages.  To do this, you must enable the &#039;&#039;&#039;TinyMCE Advanced&#039;&#039;&#039; and &#039;&#039;&#039;MCE Table Buttons&#039;&#039;&#039; plugins and configure them.  &lt;br /&gt;
&lt;br /&gt;
==Configuration==&lt;br /&gt;
# Go to the Dashboard &lt;br /&gt;
# From the Left Hand Navigation, Select Tools &amp;gt;&amp;gt; Plugins&lt;br /&gt;
# Next to the plugins MCE Table Buttons and TinyMCE Advanced, select the ‘Activate’ link&lt;br /&gt;
# From the Left Hand Navigation, Select Settings &amp;gt;&amp;gt; TinyMCE Advanced&lt;br /&gt;
# Drag the ‘Table’ icons to the toolbar above.&lt;br /&gt;
# Select ‘Save Changes’&lt;br /&gt;
&lt;br /&gt;
[[Category:UBC CMS]]&lt;/div&gt;</summary>
		<author><name>TonyChang</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Documentation:UBC_Content_Management_System/Plugins/Create_HTML_Tables&amp;diff=154550</id>
		<title>Documentation:UBC Content Management System/Plugins/Create HTML Tables</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Documentation:UBC_Content_Management_System/Plugins/Create_HTML_Tables&amp;diff=154550"/>
		<updated>2012-03-22T22:59:54Z</updated>

		<summary type="html">&lt;p&gt;TonyChang: Created page with &amp;quot;# Go to the Dashboard  # From the Left Hand Navigation, Select Tools &amp;gt;&amp;gt; Plugins # Next to the plugins MCE Table Buttons 1.5 and TinyMCE Advanced 3.4.5, select the ‘Activate...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;# Go to the Dashboard &lt;br /&gt;
# From the Left Hand Navigation, Select Tools &amp;gt;&amp;gt; Plugins&lt;br /&gt;
# Next to the plugins MCE Table Buttons 1.5 and TinyMCE Advanced 3.4.5, select the ‘Activate’ link&lt;br /&gt;
# From the Left Hand Navigation, Select Settings &amp;gt;&amp;gt; TinyMCE Advanced&lt;br /&gt;
# Drag the ‘Table’ icons to the toolbar above.&lt;br /&gt;
# Select ‘Save Changes’&lt;/div&gt;</summary>
		<author><name>TonyChang</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Documentation:UBC_Content_Management_System&amp;diff=154545</id>
		<title>Documentation:UBC Content Management System</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Documentation:UBC_Content_Management_System&amp;diff=154545"/>
		<updated>2012-03-22T22:58:41Z</updated>

		<summary type="html">&lt;p&gt;TonyChang: /* Adding Functionality to the Site */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot; class=&amp;quot;infobox&amp;quot;&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background:#002859; width:300px; color: white; font-weight:normal; font-size:11pt; padding-top: 0.5em; padding-bottom: 0.5em;&amp;quot; | {{PAGENAME}}&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot; colspan=&amp;quot;2&amp;quot;| [[{{{picture|Image:CMS_Frontpage.jpg}}}|300px| UBC CMS]]&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background:#7491a3; font-weight:normal; width:200px; color: white; font-size:10pt;&amp;quot; | {{{Unit|}}}&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;font-size:9pt; text-align: right;&amp;quot; | &#039;&#039;Overview: http://cms.ubc.ca&#039;&#039;&lt;br /&gt;
| style=&amp;quot;font-size:9pt; padding-left: 5px;&amp;quot; | {{{overview|}}}&lt;br /&gt;
|}&lt;br /&gt;
Welcome to the Documentation Codex for the [http://cms.ubc.ca UBC CMS Service].  Here you can find &#039;&#039;[[Documentation:WordPress_Documentation_Style_Guide|and contribut]]e&#039;&#039; to the UBC CMS support and help documentation.  The below pages are an effort to document best practices and provide users with tutorials on how to use the WordPress-based CMS service. You can also download this material as a [[UBC_Wiki:Books/UBC_CMS_Guide|pdf wiki book]].&lt;br /&gt;
&lt;br /&gt;
==Getting Started==&lt;br /&gt;
*[[Documentation:UBC Content Management System/About|About the UBC CMS Platform]]&lt;br /&gt;
*[[Documentation:UBC Content Management System/Differences between UBC CMS and UBC Blogs|Differences between UBC CMS and UBC Blogs]]&lt;br /&gt;
*[[Documentation:UBC Content Management System/Requesting a Site|Requesting a Site]]&lt;br /&gt;
*[[Documentation:UBC Content Management System/List of CTLT Sites by WordPress Theme Grid|Examples of UBC Websites Created Through the CMS Service]]&lt;br /&gt;
&lt;br /&gt;
==UBC CLF Advanced Theme==&lt;br /&gt;
{{PDF version|||[[UBC_Wiki:Books/UBC_CMS_Guide|the CMS Documentation Codex]]}}&lt;br /&gt;
&lt;br /&gt;
The UBC Advanced Theme allows users to develop UBC branded websites using the full UBC common look and feel.&lt;br /&gt;
&lt;br /&gt;
* [[Documentation:UBC_Content_Management_System/CLF_Theme|Theme Options Overview]]&lt;br /&gt;
* [[Documentation:UBC_Content_Management_System/CLF_Theme/UBC CLF Theme Options Index|Theme Options Index]]&lt;br /&gt;
* [[Documentation:UBC Content Management System/CLF Theme/UBC CLF Options|UBC CLF Options]]&lt;br /&gt;
* [[Documentation:UBC_Content_Management_System/CLF_Theme/Layout Options|Layout Options]]&lt;br /&gt;
* [[Documentation:UBC_Content_Management_System/CLF_Theme/Font and Colour Options|Font and Colour Options]]&lt;br /&gt;
* [[Documentation:UBC_Content_Management_System/CLF_Theme/Navigation Options|Navigation Options]]&lt;br /&gt;
* [[Documentation:UBC Content Management System/CLF Theme/Display Options|Display Options]]&lt;br /&gt;
* [[Documentation:UBC_Content_Management_System/CLF_Theme/Frontpage Options|Frontpage Options]]&lt;br /&gt;
* [[Documentation:UBC Content Management System/CLF Theme/Custom Fields Options|Custom Fields Options]]&lt;br /&gt;
* [[Documentation:UBC Content Management System/CLF Theme/Search Engine Optimization (SEO) Options|SEO Options]]&lt;br /&gt;
* [[Documentation:UBC Content Management System/CLF Theme/Export Option|Export Option]]&lt;br /&gt;
* [[Documentation:UBC Content Management System/CLF Theme/Import Option|Import Option]]&lt;br /&gt;
* [[Documentation:UBC Content Management System/CLF Theme/Global Theme Settings|Global Theme Settings]]&lt;br /&gt;
* [[Documentation:UBC Content Management System/CLF Theme/Page Templates|Page Templates]]&lt;br /&gt;
&lt;br /&gt;
==Adding Content==&lt;br /&gt;
&lt;br /&gt;
*[[Documentation:UBC Content Management System/Dashboard|Overview of the WordPress Dashboard]]&lt;br /&gt;
*[[Documentation:UBC Content Management System/Pages and Posts|Pages and Posts]]&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/Categories|Categories]]&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/Tags|Tags]]&lt;br /&gt;
*[[Documentation:UBC Content Management System/Adding Images and Media|Adding Images, Media and Other Files]]&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/How_to/How do I create a link using an image?|Linking to images]]&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/How_to/How do I add or upload a video to my site?|Videos]]&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/Widgets|Widgets]]&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/Embedding Google Maps|Maps]]&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/Plugins/Gravity Forms|Forms]]&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/Plugins/Sharedaddy|Adding social media sharing links]]&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/CLF_Theme/How_to_embed_a_news_feed_from_RSS|Embedding RSS Feeds]]&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/What_is_a_shortcode%3F|Shortcodes]]&lt;br /&gt;
&lt;br /&gt;
==Creating the Site Structure==&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/CLF_Theme/Creating_Custom_Menus|Menus]]&lt;br /&gt;
*[[Documentation:UBC Content Management System/Widgets|Widgets]]&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/CLF_Theme/Frontpage Options|Customizing the Front Page]]&lt;br /&gt;
*[[Documentation:UBC Content Management System/Shortcodes/Column|Dividing a page into columns]]&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/How_to/How do I hide a widget from a widget area on select pages?|Hiding widgets from a widget area on select pages]]&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/How_to/How do I link to a category archive page?|Linking to a category archive page]]&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/Embedding Google Maps|Embedding Google Maps]]&lt;br /&gt;
*[[Documentation:UBC Content Management System/CLF Theme/Embedding UBC Events Calendar|Embedding UBC Events Calendar]]&lt;br /&gt;
*[[Documentation:UBC Content Management System/CLF Theme/How to embed content from the UBC Wiki|Embedding content from the UBC Wiki]]&lt;br /&gt;
*[[Documentation:UBC Content Management System/CLF Theme/How to insert a Spotlight Rotation in a Page|Inserting a spotlight rotation slideshow in a Page]]&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/How_to/How do I properly remove the spotlight slideshow on the front page?|Removing the spotlight slideshow from the front page]]&lt;br /&gt;
*[[Documentation:UBC Content Management System/How to/How do I create a link using an image?#Linking the image to a document|Linking  an image to a document in the Media Library]]&lt;br /&gt;
*[[Documentation:UBC Content Management System/CLF Theme/How to set up search on the CLF utility bar|Setting up the search bar (CLF)]]&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/What_is_a_shortcode%3F|Shortcodes]]&lt;br /&gt;
*[[Documentation:UBC Content Management System/CLF Theme/Page Templates|Page Templates]]&lt;br /&gt;
&lt;br /&gt;
==Adding Functionality to the Site==&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/Plugins|Plugins]]&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/Plugins/Enabling Plugins|Enabling Plugins]]&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/Plugins/Gravity Forms|Forms]]&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/Plugins/Sharedaddy|Adding social media sharing links]]&lt;br /&gt;
*[[Documentation:UBC Content Management System/Widgets/Twitter Widget|Adding the Twitter Widget]]&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/Plugins/Redirection|Configuring the Redirection Plugin]]&lt;br /&gt;
*[[Documentation:UBC Content Management System/Plugins/Display Links by Category|Adding Links/Blogroll]]&lt;br /&gt;
*[[Documentation:UBC Content Management System/Plugins/Create HTML Tables|Configuring the HTML editor to create tables]]&lt;br /&gt;
&lt;br /&gt;
==Custom Coding==&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/How_to/How do I add JavaScript files on each page of my site?|Adding Javascript Files to Site Pages]]&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/How_to/How do I add custom CSS to my site?|Adding Custom CSS]]&lt;br /&gt;
*[[Documentation:CLF_Advanced_WordPress_Theme/How_to_add_borders_to_table|Adding borders to an HTML table]]&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/Custom Themes|Custom Themes]]&lt;br /&gt;
&lt;br /&gt;
==Privacy==&lt;br /&gt;
*[[Documentation:UBC Content Management System/Privacy/Site Visibility|Site Visibility]]&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/How_to/How_to_password_protect_a_page_or_post%3F|Password Protect an Individual Page]]&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/Plugins/Feed Key Generator|Private Feed Keys]]&lt;br /&gt;
&lt;br /&gt;
==User Management==&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/How_to/How_do_I_add_a_new_user_to_my_site%3F|Adding Users]]&lt;br /&gt;
*[[Documentation:UBC Content Management System/CLF Theme/How to disable comments site-wide|Disabling Comments Site-Wide]]&lt;br /&gt;
*[[Documentation:UBC Content Management System/Disabling Comments On a Page|Disabling Comments On a Page]]&lt;br /&gt;
&lt;br /&gt;
==Final Steps==&lt;br /&gt;
&lt;br /&gt;
*[[Documentation:UBC Content Management System/How to/How do I add Google Analytics to my site?|Adding Google Analytics]]&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/CLF_Theme/Search_Engine_Optimization_(SEO)_Options|Search Engine Optimization (SEO)]]&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/Going_Live|&amp;quot;Publishing&amp;quot; the site]] - Going Live&lt;br /&gt;
&lt;br /&gt;
==Questions?==&lt;br /&gt;
*[[Documentation:{{PAGENAME}}/How to|How to]] -  A list of short tutorials on how to get stuff done. Add your questions and we&#039;ll try to answer them.&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/Knowledge_Repository|Knowledge Base]] - A very informal space where we capture help requests.  Eventually this content will be moved into the main help pages.&lt;br /&gt;
*[[Documentation:UBC_Content_Management_System/Index|Index]] - An index of UBC CMS support pages.&lt;br /&gt;
&lt;br /&gt;
==Support==&lt;br /&gt;
If you couldn&#039;t find an answer to your question on the UBC Wiki, you can leave your question on the Wiki, send us a support ticket or visit us for a one-on-one in-person clinic.&lt;br /&gt;
* Send a ticket to UBC CMS support: [mailto:cms.support@ubc.ca cms.support@ubc.ca]&lt;br /&gt;
* [http://cms.ubc.ca In-person clinic]: Select the post with your desired attendance date found in the &amp;quot;Upcoming Clinic and Training&amp;quot; section under the &amp;quot;RSVP for Clinics&amp;quot; heading.&lt;br /&gt;
&lt;br /&gt;
{{cc-by-sa-2.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:UBC Web Services]][[Category:UBC CMS]][[Category:Learning Technologies]]&lt;/div&gt;</summary>
		<author><name>TonyChang</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=User:TonyChang/Books/Test_Book_01&amp;diff=15135</id>
		<title>User:TonyChang/Books/Test Book 01</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=User:TonyChang/Books/Test_Book_01&amp;diff=15135"/>
		<updated>2009-11-17T22:50:00Z</updated>

		<summary type="html">&lt;p&gt;TonyChang: Created page with &amp;#039;{{saved_book}}  == Test WebCT == === Test Book Creator === :WebCT/Vista :MobileCourseDiscussions :Introduction to Online Teaching  Test Book 01&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{saved_book}}&lt;br /&gt;
&lt;br /&gt;
== Test WebCT ==&lt;br /&gt;
=== Test Book Creator ===&lt;br /&gt;
:[[WebCT/Vista]]&lt;br /&gt;
:[[MobileCourseDiscussions]]&lt;br /&gt;
:[[Introduction to Online Teaching]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Books|Test Book 01]]&lt;/div&gt;</summary>
		<author><name>TonyChang</name></author>
	</entry>
</feed>