Notes:
- Unfortunately the process is not as simple as I'd have expected it, that's why I wrote this little step-by-step instruction.
- My setup is/was:
- OSX 10.9.4
- VirtualBox 4.3.12
- VMware Fusion 6.0.4
- OS as VM to migrate: Ubuntu 10.04.4 LTS
| <?php | |
| add_filter( 'theme_page_templates', 'rrwd_remove_page_template' ); | |
| function rrwd_remove_page_template( $pages_templates ) { | |
| unset( $pages_templates['page_blog.php'] ); | |
| unset( $pages_templates['page_archive.php'] ); | |
| return $pages_templates; | |
| } | |
| ?> |
| /* == WordPress WYSIWYG Editor Styles == */ | |
| .entry-content img { | |
| margin: 0 0 1.5em 0; | |
| } | |
| .alignleft, img.alignleft { | |
| margin-right: 1.5em; | |
| display: inline; | |
| float: left; | |
| } |