Ryan Boren wrote: > Could do something like this: > if (function_exists(add_meta_box()) { > // 2.5 style > } else { > // 2.3 > } > Which should be this, to avoid calling the function and to avoid calling the non-existant function: if (function_exists('add_meta_box')) { // 2.5 style } else { // 2.3 }