admin管理员组文章数量:1391937
How I can add images or edit html for the header and footers within wordpress.
I am looking in the header and footer sections under both "Theme Panel" and "Appearance" but can't figure out how to add html anywhere for adding the Google Play badge.
How I can add images or edit html for the header and footers within wordpress.
I am looking in the header and footer sections under both "Theme Panel" and "Appearance" but can't figure out how to add html anywhere for adding the Google Play badge.
Share Improve this question edited May 15, 2018 at 15:02 John Murphy asked Mar 30, 2018 at 11:14 John MurphyJohn Murphy 1152 silver badges7 bronze badges2 Answers
Reset to default 0First of all, you can modify your header and footer from either using FTP client else from WP admin dashboard. if you are not familiar with FTP the please follow following steps.
1.Go to WP admin dashboard.
2.Under the Appearance menu, there is an option for edit theme. name it Edit.
3.In right side section list of files under the theme, ll be list.
4.Click on header.php and footer.php for edit header and footer accordingly.
please refer this for Google badge and paste the code in header or footer as per your needs.
I hope its useful and solve your issue.
You can edit your header and footer file or you can insert these codes in the functions.php file
function add_google_code($url="",$utm_code="",$utm_campaign=""){ ?>
<a href='<?php echo $url ?>?utm_source=<?php echo $utm_code ?>&utm_campaign=<?php echo $utm_campaign ?>&pcampaignid=MKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1'><img alt='Get it on Google Play' src='https://play.google/intl/en_us/badges/images/generic/en_badge_web_generic.eps'/></a>
add_action('wp_head','add_google_code','#url','#utm_code','#utm_campaign');
add_action('wp_footer','add_google_code','#url','#utm_code','#utm_campaign');
Now save it and refresh the main site you can see your badge. You need to replace the
#url with your app url
#utm_code utm code with the utm code ...
本文标签: htmlHow can I add a google play badge to my header and footer
版权声明:本文标题:html - How can I add a google play badge to my header and footer? 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744722749a2621792.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论