Changeset 147601
- Timestamp:
- 08/20/2009 04:47:20 PM (17 years ago)
- Location:
- wt-co-authors
- Files:
-
- 2 edited
-
tags/1.5/readme.txt (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wt-co-authors/tags/1.5/readme.txt
r147595 r147601 9 9 == Description == 10 10 11 Displays authors of a collaboration post in place where only one is shown by default. Uses custom fields (key=<code>coauthor</code>;value=user's username; one per user). Note: Your theme must have `the_author_posts_link()` hook.11 Displays authors of a collaboration post in place where only one is shown by default. Uses custom fields (key=<code>coauthor</code>;value=user's username; one per user). Note: Your theme either must have `the_author()` hook or you must manually add `if(function_exists(wt_the_coauthors_link)): wt_the_coauthors_link(); endif;` into your theme for the plugin to work (in PHP `<?php ?>` brackets, of course). 12 12 13 13 == Installation == … … 15 15 1. Upload `wt-coathors.php` to the `/wp-content/plugins/` directory 16 16 1. Activate the plugin through the 'Plugins' menu in WordPress 17 1. If your theme does not `the_author()` template tag, manually add `if(function_exists(wt_the_coauthors_link)): wt_the_coauthors_link(); endif;` where you want it to appear 17 1. If your theme does not `the_author()` template tag, manually add `if(function_exists(wt_the_coauthors_link)): wt_the_coauthors_link(); endif;` where you want it to appear (in PHP `<?php ?>` brackets, of course) 18 18 1. Finish! 19 19 -
wt-co-authors/trunk/readme.txt
r147595 r147601 9 9 == Description == 10 10 11 Displays authors of a collaboration post in place where only one is shown by default. Uses custom fields (key=<code>coauthor</code>;value=user's username; one per user). Note: Your theme must have `the_author_posts_link()` hook.11 Displays authors of a collaboration post in place where only one is shown by default. Uses custom fields (key=<code>coauthor</code>;value=user's username; one per user). Note: Your theme either must have `the_author()` hook or you must manually add `if(function_exists(wt_the_coauthors_link)): wt_the_coauthors_link(); endif;` into your theme for the plugin to work (in PHP `<?php ?>` brackets, of course). 12 12 13 13 == Installation == … … 15 15 1. Upload `wt-coathors.php` to the `/wp-content/plugins/` directory 16 16 1. Activate the plugin through the 'Plugins' menu in WordPress 17 1. If your theme does not `the_author()` template tag, manually add `if(function_exists(wt_the_coauthors_link)): wt_the_coauthors_link(); endif;` where you want it to appear 17 1. If your theme does not `the_author()` template tag, manually add `if(function_exists(wt_the_coauthors_link)): wt_the_coauthors_link(); endif;` where you want it to appear (in PHP `<?php ?>` brackets, of course) 18 18 1. Finish! 19 19
Note: See TracChangeset
for help on using the changeset viewer.