Tagged Questions
2
votes
3answers
598 views
How do I call wp_get_current_user() in a plugin when plugins are loaded before pluggable.php?
The current result is "PHP Fatal error: Call to undefined function wp_get_current_user()" which makes sense, but doesn't help.
I need to use $current_user.
Here is the code I'm currently using:
...
0
votes
1answer
172 views
How to add custom function to pluggable.php
I am working on a WP plugin and I want to add a custom function to pluggable.php (located in /wp-includes). I am calling that function from admin.php (located in /wp-admin)
eg. Consider the function ...
1
vote
1answer
165 views
Wordpress Child Themes
I'm trying to redeclare a function in a wordpress child theme that is already in use by the parent theme. However, I get a "Fatal error: Cannot redeclare" message when trying to do so.
Also, I've ...