• Hello, I was practicing with custom WordPress plugins and I tried the following code:

    <?php
    /*
     Plugin Name: Ontdubbelaar
     Description: Het ontdubbelen van dubbelingen
     Version: 1.0
     License: GPL
     Author: Anon
     Author URI: anon.test.nl
     */
    
    function uploadFile() {
    
    	?>
    	<div class="wrap">
    	<h2> Test </h2>
    	<form action="" method="post" >
      		<input type="submit" name="test" value="submit"	class="button-primary" />
        </form>
    	</div>
    	<?php
    };
    add_shortcode('upload','uploadFile');
    ?>

    When I call the shortcode [upload] the button appears aswell as the h2 but the css class “button-primary” does not apply on the button. What am I missing, do I have to include the path of css in my plugin?

Viewing 1 replies (of 1 total)
  • Thread Starter nubdienub

    (@nubdienub)

    So it appears that this code does work in a custom menu in the dashboard but not in a page post, anyone who can do anything with that information?

Viewing 1 replies (of 1 total)
  • The topic ‘Primary Button for my plugin button?’ is closed to new replies.