Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can I redeclare a existing function, with the same name, but different code? Or somehow "disable" the old function?

I want to redefince a core WordPress function, but since plugins and theme call this function a lot, I need to keep the same function name.

share|improve this question
Keep in mind that this could make trouble with further wordpress updates... – Tobiask Jan 18 '11 at 14:33
if you're just writing a plugin or theme you shouldn't be touching the core IMHO. Maybe you could tell us what you're trying to accomplish so we could help you out with that? – Phill Pafford Jan 18 '11 at 14:36
possible duplicate of Redefine Built in PHP Functions and Redefining PHP Function. It took less than a minute to find these, so I am sure you used the search function and found these too. Please point out why they are not solving your question. – Gordon Jan 18 '11 at 15:23

5 Answers

up vote 3 down vote accepted

Only if you use something like APD that extends the zend engine to allow for that:

Intro: http://php.net/manual/en/intro.apd.php

Override Method Docs: http://php.net/manual/en/function.override-function.php

Note: Runkit seems like a better option than APD since it's more specific to this purpose and would allow you to keep the original method intact at a different address.

share|improve this answer

Just comment the old function out and write your new one ;)

In PHP it is not possible to redefine or overload (i.e. define a function with the same name but different parameters) a function natively. There though are extensions like runkit which allow to redefine functions (runkit_function_redefine), but you probably don't want to use these (such extensions are rarely installed and mostly unreliable.)

share|improve this answer
that might work for my site, but if I'm writing a public plugin or theme I can't do that... – Alex Jan 18 '11 at 14:32

You could use the wordpress hooks that are called filters and the use the add_filter() function to override the function you are using.

i.e.

function function_name(){
 //code goes here
}

$hook = get_options // or the hook that references this
add_filter($hook,function_name);

The codex will help alot with this.

http://codex.wordpress.org/Plugin_API/Filter_Reference

share|improve this answer

You can wrap the block defining the original function in a conditional checking if another of the same name is not already defined (I'm assuming you mean Wordpress functions and not core PHP ones)

    <?php 
if(!function_exists('function_name')){ 
    //old definition here
    } ?>

You could then redefine it above while still preserving the original should you need to roll back to it.

Depending on how complex the changes are and how many times you may do this, you may also want to look into Namespaces if you are on PHP 5.

share|improve this answer

People like @Gordon would do well to absorb some humility - Did it occur to you Gordon that maybe the OP had searched for a number of other possible keywords that he thought might best isolate his particular issue. Perhaps he tried terms like "override" "redeclare" "rewrite" "supersede". Perhaps he found some pointers and tried solutions. Maybe he was recieving error messages like me, that made him think he was going down the wrong path.

I think a person withthe lights on that was looking to move forward would not feel it a mistake at that point to put up their hand and ask the question!

So I have been using google to try to get an answer to this to. Thanks before you suggest it Gordon.

My attempted solution was to do this: function suffusion_get_image($options = array()) { include_once ABSPATH.'wp-content/themes/suffusion-child/functions/media.php'; return childtheme_overide_suffusion_get_image($options = array()); .... }

Obviously there is an overhead at upgrade as you would need to add lines back into the scripts again and I have used this method successfully to date but now trying to do it with get_terms in the wp-includes and hitting a redeclaration issue which I am trying to resolve or workaround at the moment.

My reason to edit core is that the existing core does not provide in a convenient way for a multisite requirement.

Someone has just suggested on another forum however using override_function but the manual is worded such that it appears to be of use only to built-in functions - I took it that means PHP built in functions

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.