I've been working on my WP plugin, and I keep getting this error, but I have no idea what causes it
Screenshot: https://pcbx.us/commando/aiwl.png
My code looks like this:
If anyone here knows about wordpress plugins, that would be helpful. I've spent hours checking my PHP syntax, and it looks fine :confused:
Screenshot: https://pcbx.us/commando/aiwl.png
My code looks like this:
Code:
<?php
/*
Info for WordPress:
==============================================================================
Plugin Name: picBox Image Uploader
Plugin URI: http://picbox.us
Description: Upload images to picBox in a post
Version: 1.0.0
Author: NegaCommando
Author URI: http://home.oregongarlic.net
*/
function picBox_uploader(){
echo '
<link href="/Bootstrap_filez/bootstrap.css" rel="stylesheet">
<style>
body {
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
}
</style>
<link href="/Bootstrap_filez/bootstrap-responsive.css" rel="stylesheet">
<div align="center">
<p><h3>Upload images to picBox.us</h3></p>
<a href="https://picbox.us/ext_upload" onclick="javascript:void window.open(\'https://picbox.us/ext_upload\',\'1369681531638\',\'width=434,height=226,toolbar=0,menubar=0,location=0,status=0,scrollbars=0,resizable=0,left=0,top=0\');return false;" class="btn btn-primary btn-large"><i class="icon-white icon-upload"></i> Upload to picBox</a>
<script src="Bootstrap_filez/jquery.js"></script>
<script src="Bootstrap_filez/bootstrap-transition.js"></script>
<script src="Bootstrap_filez/bootstrap-alert.js"></script>
<script src="Bootstrap_filez/bootstrap-modal.js"></script>
<script src="Bootstrap_filez/bootstrap-dropdown.js"></script>
<script src="Bootstrap_filez/bootstrap-scrollspy.js"></script>
<script src="Bootstrap_filez/bootstrap-tab.js"></script>
<script src="Bootstrap_filez/bootstrap-tooltip.js"></script>
<script src="Bootstrap_filez/bootstrap-popover.js"></script>
<script src="Bootstrap_filez/bootstrap-button.js"></script>
<script src="Bootstrap_filez/bootstrap-collapse.js"></script>
<script src="Bootstrap_filez/bootstrap-carousel.js"></script>
<script src="Bootstrap_filez/bootstrap-typeahead.js"></script>';
}
add_action('post-upload-ui', 'picBox_uploader');
?>