Changeset 376914
- Timestamp:
- 04/25/2011 01:46:38 PM (15 years ago)
- Location:
- back-end-instructions/trunk
- Files:
-
- 3 edited
-
bei_functions.php (modified) (3 diffs)
-
instructions.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
back-end-instructions/trunk/bei_functions.php
r359228 r376914 32 32 // test for dashboard 33 33 if($pagenow == 'index.php') $dashboard = 'true'; 34 else $dashboard = 'false'; 34 35 35 36 $count = '0'; … … 43 44 $excerpt = $instruction->post_excerpt; // instruction post excerpt 44 45 $meta = get_post_meta($postid, 'instructions'); // instruction post meta: top of the array 45 $summarymeta = get_post_meta($postid, 'extras'); 46 $summarymeta = get_post_meta($postid, 'extras'); 47 if(!empty($summarymeta)) 46 48 $summary = $summarymeta[0]['summary']; // instruction post meta: secondary excerpt 47 49 $whatpage = $meta[0]['page_id']; // instruction post meta value: the page to show on … … 69 71 $isvimeo = 'no'; 70 72 } 73 74 //set up the class 75 $class = ''; 71 76 72 77 if($whatpage == $pagenow || strpos($whatpage, $pagenow) !== false) { // test that this content is for this page -
back-end-instructions/trunk/instructions.php
r359228 r376914 5 5 Description: Plugin to provide nice little instructions for back-end WordPress users 6 6 Author: Shelly Cole 7 Version: 0. 67 Version: 0.7 8 8 Author URI: http://brassblogs.com 9 9 License: GPL2 -
back-end-instructions/trunk/readme.txt
r359228 r376914 4 4 Tags: developers, clients, instructions 5 5 Requires at least: 3.0 6 Tested up to: 3.1 7 Stable tag: 0. 66 Tested up to: 3.1.1 7 Stable tag: 0.7 8 8 9 9 Plugin for developers of WordPress to provide easy back-end instructions to their clients - using text, video, audio - whatever. … … 120 120 == Changelog == 121 121 122 = 0.7 = 123 * fixed issue where people were receiving "Notice" information when they had error_reporting turned on. These warnings were due to empty variables. (Once information was put in, they would go away, but on initial acitvation they would show because no info had been put in yet.) A minor annoyance that didn't affect the functionality of the plugin - now taken care of. 124 122 125 = 0.6 = 123 126 * fixed issue where instructions were not showing up on individual posts (post.php)
Note: See TracChangeset
for help on using the changeset viewer.