Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php function add_custom_post_types() { /* * Create here your custom post types. Yo..
Decoded Output download
<?php
function add_custom_post_types() {
/*
* Create here your custom post types. You can both use the WordPress register_post_type()
* function, or the Wordless new_post_type() helper.
*/
// new_post_type("portfolio_work", array('title', 'editor'));
}
function add_custom_taxonomies() {
/*
* Create here your custom post types. You can both use the WordPress register_taxonomy()
* function, or the Wordless new_taxonomy() helper.
*/
// new_taxonomy("work_type", array('portfolio_work'));
}
add_action('init', 'add_custom_post_types');
add_action('init', 'add_custom_taxonomies');
?>
Did this file decode correctly?
Original Code
<?php
function add_custom_post_types() {
/*
* Create here your custom post types. You can both use the WordPress register_post_type()
* function, or the Wordless new_post_type() helper.
*/
// new_post_type("portfolio_work", array('title', 'editor'));
}
function add_custom_taxonomies() {
/*
* Create here your custom post types. You can both use the WordPress register_taxonomy()
* function, or the Wordless new_taxonomy() helper.
*/
// new_taxonomy("work_type", array('portfolio_work'));
}
add_action('init', 'add_custom_post_types');
add_action('init', 'add_custom_taxonomies');
Function Calls
add_action | 1 |
Stats
MD5 | ee38263f2bac63cd2c204d2aff40dd45 |
Eval Count | 0 |
Decode Time | 91 ms |