12
我有一個PHP類,其中包含我希望在我的主題上選擇的任何位置使用的方法。
例如這個類別:在Wordpress主題中使用自定義類
<?php
class MyClass
{
const constant = 'constant value';
function showConstant() {
echo self::constant . "\n";
}
}
$class = new MyClass();
$class->showConstant();
?>
我該如何在我的主題中包含這樣的類?