السلام عليكم ....
أنا مبتديء في مجال البرمجه على منصة الوورد بريس ....
أواجه مشكله الآن في كيفية تعديل الفوتر و القوائم الجانبيه ؟!!
القالب بالفوتر ذات اللون الأسود الموضح في الصوره المرفقه ، أجد صعوبه في التعديل داخل هذا الفوتر و إضافة قوائم جانبيه له ....
قمت بعمل الخطوات التاليه حسب ما هو مذكور على الرابط :
http://kevinsbrown.com/add-widgets-to-your-wordpress-footer-easy-how-to-guide.html
و لكن لم يضيفها بشكل جيد كانت الإضافه كما بالصوره المرفقه تحت الفوتر الأساسي باللون الرمادي ...
كيف أقوم بتعديل الفوتر كما هو موضح في الصوره الآخرى ؟!!
علمًا بأن كود ملف footer.php يحوي على الكود التالي :
\[code\]<div class="clear"></div>
</div><!-- .container /-->
<?php tie\_banner('banner\_bottom' , '<div class="ads-bottom">' , '</div>' ); ?>
<?php get\_sidebar( 'footer' ); ?>
<div class="clear"></div>
<div class="footer-bottom">
<div class="container">
<div class="alignright">
<?php echo htmlspecialchars\_decode(tie\_get\_option( 'footer\_two' )) ?>
</div>
<?php if( tie\_get\_option('footer\_social') ) tie\_get\_social('yes',16); ?>
<div class="alignleft">
<?php echo htmlspecialchars\_decode(tie\_get\_option( 'footer\_one' )) ?>
</div>
<div id="footerwidgets">
<div id="footer-left">
<ul>
<?php if ( !function\_exists('dynamic\_sidebar') || !dynamic\_sidebar('footer 1') ) : ?>
<li>
<?php endif; ?>
</ul>
</div>
<div id="footer-middle">
<ul>
<?php if ( !function\_exists('dynamic\_sidebar') || !dynamic\_sidebar('footer 2') ) : ?>
<li>
<?php endif; ?>
</ul>
</div>
<div id="footer-right">
<ul>
<?php if ( !function\_exists('dynamic\_sidebar') || !dynamic\_sidebar('footer 3') ) : ?>
<li>
<?php endif; ?>
</ul>
</div>
</div>
<br>
<br clear="all" />
</div><!-- .Container -->
</div><!-- .Footer bottom -->
</div><!-- .Wrapper -->
<?php if( tie\_get\_option('footer\_top') ): ?>
<div id="topcontrol"><?php \_e('Scroll To Top' , 'tie'); ?></div>
<?php endif; ?>
<?php wp\_footer(); ?>
</body>
</html> \[/code\]