Quantcast
Channel: Topic Tag: action | WordPress.org
Viewing all articles
Browse latest Browse all 889

Richie KS on "[Theme: MesoColumn] Where are the actions defined?"

$
0
0

it is a hook action. nothing hook into yet.
for example if you add something like to your custom function

function hello_text() {
echo 'hello world';
}
//here's the hook come in handy
add_action('bp_head_before_title','hello_text');

then the 'hello world' text will appeared in before <title> without touching the header.php


Viewing all articles
Browse latest Browse all 889

Trending Articles