php - wordpress plugin custom activation message -


i created wordpress plugin .when activated plugin got "plugin activated" flash msg. want customize message "connect my-plugin" , provide link plugin settings page. try

add_action( 'admin_notices', 'your_custom_function' );  function your_custom_function() {     echo "connect my-plugin";      if( $error ) {         // put here     }  } 

results connect my-plugin msg shown on every page in admin panel.i want show custom msg @ time of activation on plugins page got error plugin generated 2 characters of unexpected output during activation. if notice “headers sent” messages, problems syndication feeds or other issues, try deactivating or removing plugin.

i guess 1 filter hook looking plugin_action_links_(plugin_file_name) allows add custom links plugin entry on plugins page.

to display activation message, see this tutorial.

you have found these 2 research on own.


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -