In your wp-content/themes/oblique
folder, open your functions.php
file, and look for the following code.
Comment out the functions you don’t want to be used.
Put a
/****
where you want to start the comment,
And to end the comment, use
***/
When I want to tinker with a function, I will usually
copy the whole function and then comment it all out (this is the “backup copy”).
Then after the function getting commented out,
I post the code I copied and then start tinkering.
If my tinkering turns tragic, I will delete the broken function and
then UN-COMMENT out the original code.
maybe it’s not the best practise , but it works for my when I need to act like ike a script kiddie. XD
If you comment out credits in the front end, you should maybe throw
Comments at the top of the php file, so the author gets credit seen by people who are in the know.
/**
* Footer credits
*/
/**
function oblique_footer_credits() {
echo ‘‘;
printf( __( ‘Proudly powered by %s’, ‘oblique’ ), ‘WordPress’ );
echo ‘‘;
echo ‘<span class=”sep”> | </span>’;
printf( __( ‘Theme: %2$s by %1$s.’, ‘oblique’ ), ‘Themeisle’, ‘Oblique‘ );
}
**/