creating a custom page
-
i want to create a php file to create my own page
i want to list my tags in a single php like
abc.com/tags and the function i want to use is
<?php UTW_ShowWeightedTagSetAlphabetical(“coloredsizedtagcloud”,””,0) ?>
but when i am using this code
<div id=”wrapper”>
<div id=”content” class=”narrowcolumn”><?php UTW_ShowWeightedTagSetAlphabetical(“coloredsizedtagcloud”,””,0) ?>
</div>
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>i get an error
Fatal error: Call to undefined function: utw_showweightedtagsetalphabetical() in /home/.lyons//abc.com/tags/index.php on line 13
i understood from error that i can’t use UTW_ShowWeightedTagSetAlphabetical function in that file.so what should i do to achive my aim?
- The topic ‘creating a custom page’ is closed to new replies.