Create template specific to node in drupal 6
If you want to have custom templates for your node. You can create templates specific to node ID as follows. Add the below function in your template.php if its not…
If you want to have custom templates for your node. You can create templates specific to node ID as follows. Add the below function in your template.php if its not…
If you want to get the option list of the content type that you have created , then you can get the list as follows: $content_field = content_fields(‘whatever_the_field_name_is’); $allowed_values =…
Whenever you create any content type in drupal ( version 6 and above) and you required a filed of type select list, then you can provide the allowed values of…