Changeset 2270321
- Timestamp:
- 03/29/2020 06:24:04 PM (6 years ago)
- Location:
- simple-course-creator/trunk
- Files:
-
- 3 edited
-
README.md (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
-
simple-course-creator.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-course-creator/trunk/README.md
r911748 r2270321 29 29 The course listing will display as a container that shows nothing but the course title and the course description, which is what you filled out when creating a new course. 30 30 31 The series of posts will be hidden until you click a subtle link for displaying them, at which point the container will gracefully expand to reveal all posts in said course. They will all be linked except for the current post. 31 The series of posts will be hidden until you click a subtle link for displaying them, at which point the container 32 will gracefully expand to reveal all posts in said course. They will all be linked except for the current post. 32 33 33 34  … … 40 41 --- 41 42 42 Simple Course Creator comes with a fewvery simple options.43 Simple Course Creator comes with very simple options. 43 44 44 Choose to display your course containers above post content, below post content, both above and below post content, or do not display it at all while still preserving the course configuration. 45 1. Choose to display your course containers above post content, below post content, both above and below post content 46 , or do not display it at all while still preserving the course configuration. 45 47 46 You may also choose your course list style type. They can be displayed as a numbered list, a bulleted list, or a list with no list indicator at all... simply stacked like paragraphs. 48 2. Choose your course list style type. They can be displayed as a numbered list, a bulleted list, or a list with no list 49 indicator at all... simply stacked like paragraphs. 50 51 3. Choose to sort your posts by date, author, title, last modified, random, or comment count. 52 53 4. Choose to display your sorted posts in ascending order or descending order. 54 55 5. Choose a display style of the current post in your post listing. Select between bold, strike, italic, or no style 56 at all. 57 58 6. Disable plugin javascript, which causes the post listing to be fully expended on page load. The show/hide 59 function is removed. 47 60 48 61  … … 122 135 --- 123 136 124 I'm Sean. I created the [Volatyl Framework](http://volatylthemes.com) for WordPress. I like to do most of my WordPress stuff on [Build WordPress Yourself](http://buildwpyourself.com/). I also write stuff on my [personal site](http://seandavis.co) and [SDavis Media](http://sdavismedia.com). Follow me on the [Twitter](http://sdvs.me/twitter) machine.137 I'm Sean. I've created a few little pieces of software. I'm not that easy to find online. That's by design. 125 138 126 Meanwhile, tell me... is this plugin useful to you? If so, consider buying me a box of "Tazo: Awake - English Breakfast Black Tea." I need ALL the energiez. Thanks. [Donate Black Tea](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=52HQDSEUA542S) 139 Is this plugin useful to you? If so, please consider buying me a bag of coffee beans. Thank you much. [Donate via 140 PayPal](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=52HQDSEUA542S) -
simple-course-creator/trunk/readme.txt
r1443528 r2270321 24 24 * [SCC Updates](https://wordpress.org/plugins/simple-course-creator-updates/) - List the newest posts from your courses and stories in a timeline format anywhere on your site (shortcode). 25 25 26 Follow Simple Course Creator’s development on [Github](https://github.com/sdavis 2702/simple-course-creator)26 Follow Simple Course Creator’s development on [Github](https://github.com/sdavismedia/simple-course-creator) 27 27 28 View all [contributors](https://github.com/sdavis 2702/simple-course-creator/graphs/contributors) to SCC’s development.28 View all [contributors](https://github.com/sdavismedia/simple-course-creator/graphs/contributors) to SCC’s development. 29 29 30 30 == Installation == … … 39 39 = Can a post be assigned to more than one course? = 40 40 41 No. A post can only be assign to one course that way it can display the rest of the course's posts within the content of said post. 41 No. A post should only be assigned to one course. This is because the purpose of the plugin is to display the other 42 posts that are in the same course as the post being viewed. In order to do that, the other posts must be pulled from a 43 single source (the one course you have chosen). Technically, multiple courses can be added to a posts. However, only 44 course will display on your post, and you will not have control of which course that is. 42 45 43 46 = Can I edit the course HTML output? = … … 87 90 == Changelog == 88 91 92 = 1.0.7 = 93 * Added: setting for ordering the post listing using the "order" parameter (ascending or descending) 94 * Removed: "scc_order" filter, which is now replaced by the above setting 95 * Tweaked: default border and padding on the post listing display 96 89 97 = 1.0.6 = 90 98 * Added: setting for ordering the post listing using the "orderby" parameter -
simple-course-creator/trunk/simple-course-creator.php
r1443533 r2270321 2 2 /** 3 3 * Plugin Name: Simple Course Creator 4 * Plugin URI: http ://buildwpyourself.com/downloads/simple-course-creator/4 * Plugin URI: https://github.com/SDavisMedia/simple-course-creator 5 5 * Description: Allows you to easily create and manage courses in your WordPress website. 6 * Version: 1.0. 66 * Version: 1.0.7 7 7 * Author: Sean Davis 8 * Author URI: http ://seandavis.co8 * Author URI: https://github.com/SDavisMedia/ 9 9 * License: GPL2 10 10 * Requires at least: 3.8 11 * Tested up to: 4.611 * Tested up to: 5.3 12 12 * Text Domain: scc 13 13 * Domain Path: /languages/ … … 57 57 58 58 // define plugin version 59 define( 'SCC_VERSION', '1.0. 6' );59 define( 'SCC_VERSION', '1.0.7' ); 60 60 61 61 // define plugin directory
Note: See TracChangeset
for help on using the changeset viewer.