묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
위젯 스킨 수정
2011.07.22 19:24
광고모듈의 배너위젯을 간소화 시켰습니다.
<!--@foreach($widget_info->ad_list as $no => $oAd)-->
<!--@foreach($widget_info->ad_list as $no => $oAd)-->
{$oAd->getAdContent($widget_info->subject_cut_size, true, 'image')}
<!--@end-->
<a href="http://xxx.net/plusad"><img src="img/imgRegister.jpg" /></a>
여기서 맨 마지막 줄을 위 세줄과 반대로 조건문을 넣고 싶습니다.
다시말하면,
광고가 있을 경우는 {$oAd->getAdContent($widget_info->subject_cut_size, true, 'image')}
광고가 없을 경우는 <a href="http://xxx.net/plusad"><img src="img/imgRegister.jpg" /></a>
를 표시하고 싶습니다.
맨 마지막줄의 앞뒤로 어떻게 수정해야 할까요?
여기서 맨 마지막 줄을 위 세줄과 반대로 조건문을 넣고 싶습니다.
다시말하면,
광고가 있을 경우는 {$oAd->getAdContent($widget_info->subject_cut_size, true, 'image')}
광고가 없을 경우는 <a href="http://xxx.net/plusad"><img src="img/imgRegister.jpg" /></a>
를 표시하고 싶습니다.
맨 마지막줄의 앞뒤로 어떻게 수정해야 할까요?
댓글 2
-
SMaker
2011.07.22 20:18
-
도라란
2011.07.22 21:21
광고가 있거나 없을 경우 아무것도 나오질 않습니다. -
ezi
2011.07.22 21:51
<!--@if(!count($widget_info->ad_list))--><a href="http://xxx.net/plusad"><img src="img/imgRegister.jpg" /></a><!--@end-->
<!--@else-->
<!--@end-->