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/18 15:40]
smayr [Manually Remove Date from WordPress post and pages]
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 35: Line 36:
 == Manually Remove Date from WordPress post and pages == == Manually Remove Date from WordPress post and pages ==
  
-Comment out references to ''the_date()'' and ''the_time()'':+Comment out any references to ''get_the_date()'' and ''get_the_time()'':
 <code> <code>
-<strong>&lt;?php the_date(); ?&gt;</strong> +&lt;?php echo get_the_date(); ?&gt; 
-<strong>&lt;?php the_time(); ?&gt;</strong>+&lt;?php echo get_the_time(); ?&gt;
 </code> </code>
  
 Edit the following theme pages (in ''//<wordpress>///wp-content/themes///<activetheme>//'') to remove date/time entries in posts or pages: Edit the following theme pages (in ''//<wordpress>///wp-content/themes///<activetheme>//'') to remove date/time entries in posts or pages:
   * Home page: ''index.php''   * Home page: ''index.php''
-  * Blog Posts: ''single.php''+  * Blog Posts: ''single.php'', ''post.php'', ''post-single.php''
   * Archive pages: ''archive.php''   * Archive pages: ''archive.php''
   * Category pages: ''category.php''   * Category pages: ''category.php''
Line 50: Line 51:
 References References
   * [[http://bornvirtual.com/wordpress/remove-date-from-wordpress-post/#ixzz2zGh2ZbqT|Remove date from WordPress post]]   * [[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
 +