연관글 애드온
tag_relation 애드온
해당 애드온은 tag 연관글을 게시글 하단(AfterDocument)에 삽입한다. 삽입 위치를 마음대로 조정하는 것이 이 팁의 목적이다.
우선 애드온 파일(tag_relation.addon.php)을 열어,
$pos_regx = '|<\!--AfterDocument\((0-9+),(0-9+)\)-->|is';
$output = preg_replace_callback($pos_regx, getTagRelation, $output);
이것을 아래와 같이 변경한다.
$pos_regx = '|<\!--showtagrel\((0-9+),(0-9+)\)-->|is';
$output = preg_replace_callback($pos_regx, getTagRelation, $output);
그리고 게시판 스킨 원하는 위치에
<!--showtagrel({$oDocument->document_srl},{$oDocument->get('member_srl')})-->
를 삽입하면 된다.
출력 위치를 AfterDocument 에서 showtagrel 기능으로 전환해 수동으로 출력해 주는 방식이다.