story adındaki içerik türüne eklenmiş her hangi makaleye tıklayınca blok görünür. Blok etkinleşmiş olmalı.
Yönetim -> Bloklar-> TERCİH ETTİĞİN BLOK -> ayarlar
Sayfaya özel görünürlük ayarları

İçerik türü: story
Kod:
<?php
$match = FALSE;
$types = array('story' => 1);
if (arg(0) == 'node' && is_numeric(arg(1))) {
$nid = arg(1);
$node = node_load(array('nid' => $nid));
$type = $node->type;
if (isset($types[$type])) {
$match = TRUE;
}
}
return $match;
?>
1 den çok İçerik türü: story ve page
<?php
$match = FALSE;
$types = array('story' => 1, 'page' => 1);
if (arg(0) == 'node' && is_numeric(arg(1))) {
$nid = arg(1);
$node = node_load(array('nid' => $nid));
$type = $node->type;
if (isset($types[$type])) {
$match = TRUE;
}
}
return $match;
?>
| Ek | Boyut |
|---|---|
| 18.5 KB |