Visa ett inlägg
Oläst 2014-05-19, 21:57 #5
youheardit youheardit är inte uppkopplad
Har WN som tidsfördriv
 
Reg.datum: Oct 2008
Inlägg: 1 168
youheardit youheardit är inte uppkopplad
Har WN som tidsfördriv
 
Reg.datum: Oct 2008
Inlägg: 1 168
Med lite erfarenheter inom kodning kan du öppna temats functions.php fil och lägga till följande som enkel lösning:

PHP-kod:

add_filter
('the_content''aff_content');

function 
aff_content($content false){
    
$links = array(
        
"Adidas" => "http://adidas.se",
        
"Nike" => "http://nike.se"
    
);
    foreach(
$links as $find => $link){
        
$links[$find] = '<a href="'.$link.'">'.$find.'</a>';
    }
    
$content str_replace(array_keys($links),array_values($links),$content);
    return 
$content;

youheardit är inte uppkopplad   Svara med citatSvara med citat