Some anchors let plugins modify the value of a variable that is to be used later in the code. Let's take a look at a simple example, where we allow plugins to format a title that will be displayed on the page:
Now, if one were to create a plugin that modified this title in some way, it would look like this:
' . $title . '';
}
?>
Whatever value is returned by the plugin function will replace the original value of the variable.
Line's Music Blog
?>
Note too, that the value sent by ''call_anchor()'' can be of any type. If you need to send multiple values, supplying an array offers an easy workaround: