I was trying to change the copywrite date and I messed up and deleted and saved. Can you please send me this code to paste back in and get my site back to normal?
My site is jessloren.com
I was able to find the code but how can I change it to just have the copyright and my name? I do not want all the links out.
<?php
?>
<footer class=”site-footer” role=”contentinfo”>
<small>
<?php _e(‘Copyight © 2013 by’,DW_TEXTDOMAIN) ?> <a href=”#”>DW Fixel.</a>
<?php _e(‘Proudly powered by ‘,DW_TEXTDOMAIN) ?>
<a href=”http://wordpress.org/” target=”_blank” title=”Semantic Personal Publishing Platform”>WordPress</a>.
<br/> <?php _e(‘Theme DW Fixel by’,DW_TEXTDOMAIN) ?>
<a href=”http://designwall.com/” rel=”nofollow” target=”_blank”>DesignWall</a>.
</small>
</footer>
<?php if(dw_get_theme_option(‘disable_top’, ‘no’) == ‘no’) : ?>
<?php get_sidebar(‘top’); ?>
<?php endif; ?>
</div>
</div>
<?php if( is_home() || is_archive() || is_search() ) : ?>
<?php get_template_part(‘modal’) ?>
<?php endif; ?>
<a id=”back-to-top” class=”scrollup” href=”#”><i class=”icon-chevron-up”></i></a>
<?php wp_footer(); ?>
</body>
</html>
You can add the following code to the footer.php file then change the copyright as you want.
See the screenshot: http://prntscr.com/435d6n
<?php
?>
<footer class="site-footer" role="contentinfo">
<small>
<?php _e('Copyight © 2013 by',DW_TEXTDOMAIN) ?> <a href="#">DW Fixel.</a>
<?php _e('Proudly powered by ',DW_TEXTDOMAIN) ?>
<a href="http://wordpress.org/" target="_blank" title="Semantic Personal Publishing Platform">WordPress</a>.
<br/> <?php _e('Theme DW Fixel by',DW_TEXTDOMAIN) ?>
<a href="http://cmspioneer.com/designwall/" rel="nofollow" target="_blank">DesignWall</a>.
</small>
</footer>
<?php if(dw_get_theme_option('disable_top', 'no') == 'no') : ?>
<?php get_sidebar('top'); ?>
<?php endif; ?>
</div>
</div>
<?php if( is_home() || is_archive() || is_search() ) : ?>
<?php get_template_part('modal') ?>
<?php endif; ?>
<a id="back-to-top" class="scrollup" href="#"><i class="icon-chevron-up"></i></a>
<?php wp_footer(); ?>
</body>
</html>
Hope this helps !
Please login or Register to submit your answer