Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if ( ! function_exists( 'jnews_hide_format_type_frontend_submit' ) ) {
- /**
- * Hide Format Type Input on Frontend Submit from JNews
- *
- * @return void
- */
- function jnews_hide_format_type_frontend_submit() {
- if ( ! current_user_can( 'upload_files' ) ) {
- ?>
- <style>
- .wp-theme-jnews .format-field {
- display: none;;
- }
- </style>
- <?php
- }
- }
- add_action( 'wp_footer', 'jnews_hide_format_type_frontend_submit' );
- }
Advertisement
Add Comment
Please, Sign In to add comment