Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
systems:wordpress:wordpress_setup_and_configuration [2014/04/17 12:40]
smayr [Move Site]
systems:wordpress:wordpress_setup_and_configuration [2018/05/03 15:03] (current)
ajdavis [Multisite Configuration]
Line 27: Line 27:
 | fileupload_url | Edit as needed (if this exists)  | | fileupload_url | Edit as needed (if this exists)  |
 | <themename>_theme_options | Edit as needed  | | <themename>_theme_options | Edit as needed  |
 +| _menu_item_url | Several entries that need editing | 
  
 References References
Line 32: Line 33:
   * [[http://codex.wordpress.org/Moving_WordPress#When_Your_Domain_Name_or_URLs_Change|Moving WordPress: When Your Domain Name or URLs Change]]   * [[http://codex.wordpress.org/Moving_WordPress#When_Your_Domain_Name_or_URLs_Change|Moving WordPress: When Your Domain Name or URLs Change]]
   * [[http://codex.wordpress.org/Changing_The_Site_URL|Changing the Site URL]]   * [[http://codex.wordpress.org/Changing_The_Site_URL|Changing the Site URL]]
 +
 +== Manually Remove Date from WordPress post and pages ==
 +
 +Comment out any references to ''get_the_date()'' and ''get_the_time()'':
 +<code>
 +&lt;?php echo get_the_date(); ?&gt;
 +&lt;?php echo get_the_time(); ?&gt;
 +</code>
 +
 +Edit the following theme pages (in ''//<wordpress>///wp-content/themes///<activetheme>//'') to remove date/time entries in posts or pages:
 +  * Home page: ''index.php''
 +  * Blog Posts: ''single.php'', ''post.php'', ''post-single.php''
 +  * Archive pages: ''archive.php''
 +  * Category pages: ''category.php''
 +  * Pages: ''page.php ''
 +
 +References
 +  * [[http://bornvirtual.com/wordpress/remove-date-from-wordpress-post/#ixzz2zGh2ZbqT|Remove date from WordPress post]]
 +
 +
 +== Installed Plugins ==
 +  * BAW Login/Lougout menu: Add login/logout link in menus.
 +  * Contact Form to Email: Contact form.
 +  * Google Language Translator: Translate pages into multiple languages.
 +  * iframe: Shortcode to embed arbitrary webpage in an iframe in posts or pages.
 +  * Sky Login Redirect: Redirects users to the page they were reading just before logging in.
 +  * WP Content Permissions: Display different content for login and guest users.
 +
 +== Multisite Configuration ==
 +  * [[http://codex.wordpress.org/Create_A_Network|Create a Network]]
 +  * [[http://codex.wordpress.org/Multisite_Network_Administration|Multisite Network Administration]]
 +
 +== Update Content ==
 +Login to ''//<sitedomain>///en/wp-admin/'' to update the content:
 +  * Home page:
 +    * Pages > Welcome.
 +  * Products
 +    * Posts, then Add or Edit the current products.
 +  * Contact (footer box):
 +    * Appearance > Widgets.
 +    * Select Footer Widget Area 3, and edit the Text:Contact box.
 +  * New Product (right sidebar box):
 +    * Appearance > Widgets.
 +    * Select Footer Primary Sidebar, and edit the 'Info Box:New Product'.
 +  * Header Logo:
 +    * Appereance > PersonalFinance Theme Options
 +    * General > Logo Image
 +