Title: aurimas's Replies | WordPress.org

---

# aurimas

  [  ](https://wordpress.org/support/users/aurimas/)

 *   [Profile](https://wordpress.org/support/users/aurimas/)
 *   [Topics Started](https://wordpress.org/support/users/aurimas/topics/)
 *   [Replies Created](https://wordpress.org/support/users/aurimas/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/aurimas/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/aurimas/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/aurimas/engagements/)
 *   [Favorites](https://wordpress.org/support/users/aurimas/favorites/)

 Search replies:

## Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Code Editor Plus] [Plugin: WP Code Editor Plus] Working but.. Can't change which plugin to edit?](https://wordpress.org/support/topic/plugin-wp-code-editor-plus-working-but-cant-change-which-plugin-to-edit/)
 *  [aurimas](https://wordpress.org/support/users/aurimas/)
 * (@aurimas)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/plugin-wp-code-editor-plus-working-but-cant-change-which-plugin-to-edit/#post-1992990)
 * I have the same issue, but I found a workaround – you can access any plugin via
   plugin list, by clicking the edit link there. I guess the same should work for
   themes, too.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Adding error messages to post.php (looking as WP default ones)](https://wordpress.org/support/topic/adding-error-messages-to-postphp-looking-as-wp-default-ones/)
 *  Thread Starter [aurimas](https://wordpress.org/support/users/aurimas/)
 * (@aurimas)
 * [16 years ago](https://wordpress.org/support/topic/adding-error-messages-to-postphp-looking-as-wp-default-ones/#post-1552450)
 * And, of course, a bit of more google search, and I arrived at the asnwer:
 * one needs to use the admin_notices hook:
 *     ```
       add_action('admin_notices', create_function('', 'echo "<div class=\"error\">This is my error";')); //for errors (red background)
       add_action('admin_notices', create_function('', 'echo "<div class=\"updated\">This is my error";')); //for other notifications (yellow background)
       ```
   

Viewing 2 replies - 1 through 2 (of 2 total)