Template help needed
-
How do I get rid of the “featured article” bit at the top that’s running in to my sidebar?
Additionally, I entered code to disable pingbacks within my own site, and it didn’t seem to work. This is the code I used:
function disable_internal_pingbacks( &$links ) {
$home = get_option( ‘home’ );
foreach ( $links as $l => $link )
if ( 0 === strpos( $link, $home ) )
unset($links[$l]);
}add_action( ‘pre_ping’, ‘disable_internal_pingbacks’ );
Any other suggestion? Did I enter it in the wrong section? It’s in the functions.php section. What did I do wrong?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Template help needed’ is closed to new replies.