wordpress copyright dynamic

时间:2019-02-15 作者:tmmcursist

大家好,我有一个问题,你如何在WordPress中创建一个动态版权,URL可以返回到主页,也可以返回到主题设计者的URL

3 个回复
SO网友:Fabrizio Mele

最快的方法是在主题的footer.php 归档并替换为您更喜欢的内容。

我的建议是,我不知道你所说的“动态”是什么意思,用一个函数调用替换当前文本,如<?php my_copyright_text() ?>, 然后在主题的function.php 您可以在其中执行任何需要执行的操作的文件。

function my_copyright_text(){

  $year = date("Y",time());
  $company = "Mycompany.com";
  echo "© 2018-$year $company"; //this is effectively HTML code
}
由于函数的输出是HTML代码,因此可以根据需要插入标记和css类。例如"© 2018-$year <span class="company">Mycompany.com</span>".

It is strongly suggested to use a child theme, 不要让主题更新覆盖你的调整。

如果你觉得勇敢,可以在主题定制器中设置一些参数,take a look here.

SO网友:yogesh chatrola

下面的代码动态更新网站中的版权年份

&copy; 2018 – <?php echo date(\'Y\'); ?> <a href="#url">YourSite.com</a>

SO网友:Tanmay Patel

First you can put below code in your theme\'s functions.php file.

<?php
function copyright_text(){
    $previous_year = date(\'Y\') - 1;
    $current_year = date(\'Y\');
    $company_url = esc_url(home_url(\'/\'));
    $designer_url = \'http://www.designer-url.com\';
    echo \'<div>&copy; copyright \'.$previous_year.\' - \'.$current_year.\'<a href=\'.$company_url.\' class="comp"> company </a> and <a href=\'.$designer_url.\' class="desg" taret="_blank"> designer </a></div>\';
}
?>
And Second you can use this code <?php echo copyright_text(); ?> where you want to display copyright in footer like your theme\'s footer.php file.

Hope this code may help you. I have tested this code and it\'s working fine.

相关推荐

Two urls for one website

我有一位客户,他用一个名为“firstname lastname.ch”的url开始了他的小生意。因为他很幸运能够成长,现在需要一个合适的URL,所以他希望自己的网站有另一个URL,名为“businessype lastname.ch”在没有太多管理和SEO问题的情况下,实现这一目标的最佳方式是什么。谢谢