[embed]https://www.youtube.com/watch?v=JBgdDD6uCWQ[/embed]The Editor included in the MobiLoud WordPress plugin allows you to customize your app's post, page, and lists with your own CSS/javascript, PHP, or HTML code.Note you're adding code that will be executed outside "the loop", therefore you'll need to refer to the current post ID with the $post->id variable - most WordPress functions and plugins will be accessible with custom code.Here are some frequent uses for the editor:
- Showing featured images in the article screen
- Adding a custom field to the article screen
- Adding videos to the article screen
Through the editor and the "head" and "footer" code placements, you can easily load some themes or plugin's CSS or Javascript, which may be necessary for its output to work correctly in the app. You may also load the wp_head(); function to load all the standard javascript and CSS loaded first in your site's template, as well as the wp_footer(); function for those loaded last.