- الرئيسية
- ما الجديد !
-
الصفحات▼
الصفحات
كيفية اضافه كود يظهر فى وسط كل المواضيع نرجو التوضيح
الساعة الآن 01:07 PM

<div class="text">{$Info['text']}</div><div class="text">
<?php
$inserts = 'ضع الكود هنا';
$_text = $PowerBB->_CONF['template']['Info']['text'];
$_tmp_lines = explode("", $_text);
$_tmp_pos = round(count($_tmp_lines) / 1.4)-1;
for ($_i = 0; $i < ($_count = count($_tmp_lines)); $_i++)
{
if ($_i == $_tmp_pos)
{
$_text = preg_replace('`' . preg_quote($_tmp_lines[$_i]) . '`', $_tmp_lines[$_i] . $inserts , $_text , 1);
echo $_text;
break;
}
}
?>
</div>