Plugin for visitors to edit content without logging in? [closed]
I don’t have hands-on experience with such use case, but my first suggestion would be to heck out plugins tagged wiki in official repository.
I don’t have hands-on experience with such use case, but my first suggestion would be to heck out plugins tagged wiki in official repository.
First, you used a Theme Options tutorial that is way out of date. Using such out-of-date code is going to cause you many problems. You might try this one that I wrote. But specific to your current code, your call to add_menu_page() uses the edit_themes capability, which is limited to Administrator only. You need to … Read more
try pasting this in your theme’s functions.php file add_filter( ‘parse_query’, ‘display_autosave_and_revisions’ ); function display_autosave_and_revisions( $query ) { global $pagenow,$typenow; if ( is_admin() && $pagenow == ‘edit.php’ && $typenow == “post”) { $query->query_vars[‘post_type’] = array(‘revision’,’post’); $query->query_vars[‘post_status’] = ‘any’; } }
TinyMCE is generally cross-browser compatible. However they provide the best support for IE, Firefox and Safari. I’ve never ran into problems with my beloved Opera too. http://www.tinymce.com/wiki.php/Browser_compatiblity If there are any bugs they’re mostly not browser-dependent, but if they are – try Firefox, Safari, Opera, IE – in that order.
Short answer- there aren’t any. If you click the help button in the editor, then the hotkeys tab, you’ll see the available shortcuts for the current OS/Browser. In OS X the modifier is Command instead of Control, but there aren’t any shortcuts for headings.
A “current user can” condition should hide the entire input field. This is a simple condition i have just checked to be sure: <?php if(current_user_can(‘administrator’)) { echo ‘You are the boss’; } else { echo ‘Please Log in’; } ?> if that kind of condition surrounding that input field it should hide it completely from … Read more
Shortcode do have encapsulation. Read more about that here: http://codex.wordpress.org/Shortcode_API
I was looking forever for the solution. I finally found this plugin which actually does a lot of things. But i only used the option to add a HTML button to the row of buttons which lets you edit post/page html with CodeMirror (http://codemirror.net/) highlighting. Link to plugin: http://wordpress.org/extend/plugins/ultimate-tinymce/
The editor is doing fine to add <p> tag on line break. I think what you need is to add some css to add margin to <p> tag so you don’t have to add additional or empty paragraph tags (which i see on your current page). try something like this on your css: .entry-content p{ … Read more
Try wrapping it with the is_front_page() conditional like so: <?php if ( is_front_page() ) { include (ABSPATH . ‘/wp-content/plugins/featured-content-gallery/gallery.php’); } ?> Hope this helps!