Tuesday, 23 July 2013

How to call our custom sidebar on the required position?


Go to 
<a> wp-admin folder.
<b> themes.
<c> select your current theme.
<d> Open required file such as 'header.php', 'footer.php', index.php',
           'page.php' or any custom page template and paste the following code
in the required container such as <div>, <span> etc. and pase the following code.
<e> Here 'copy_right' is the id of the custom sidebar.

<?php dynamic_sidebar('copy_right'); ?>

No comments:

How calulation total value for HTML input text?

<script> $j(document).ready(function(){ $j(":text").keyup(function(){ if (isNaN($j(this).val())) { alert(...