Skip to content

Instantly share code, notes, and snippets.

View halusdm10's full-sized avatar

Dima halusdm10

View GitHub Profile
@halusdm10
halusdm10 / Wordpress, functions.php
Last active February 3, 2017 21:38
How to remove the word Category: In the category?
add_filter( 'get_the_archive_title', function ($title) {
if ( is_category() ) {
$title = single_cat_title( '', false );
} elseif ( is_tag() ) {
$title = single_tag_title( '', false );
} elseif ( is_author() ) {
$title = '<span class="vcard">' . get_the_author() . '</span>' ;
}
return $title;
@halusdm10
halusdm10 / Wordpress-adsens
Last active December 31, 2017 12:06
wordpress
<?php
//Create an ad unit
//Place this code in a file functions.php
function wptuts_simple_ads( $ad_type ) {
switch ( $ad_type ) {
case "468x60":
$ad_code = "<!-- Ad code for a 468x60 advertisement. -->";