Thread: PHP or whatever
View Single Post
Old 2017-05-03, 01:44 PM   #1
jollyhumper
That's what she said
 
jollyhumper's Avatar
 
Join Date: Feb 2012
Location: Norway
Posts: 2,476
Send a message via ICQ to jollyhumper
PHP or whatever

Hi

I want to put my own info in the footer and not the shit that wordpress has put there.
It's the theme Twenty Seventeen (Click Preview and check footer)

Now, this one I'm not able to crack. Usually I crack those footer-codes, but not so on this one.
Here's the code
Code:
</div><!-- #content -->

		<footer id="colophon" class="site-footer" role="contentinfo">
			<div class="wrap">
				<?php
				get_template_part( 'template-parts/footer/footer', 'widgets' );

				if ( has_nav_menu( 'social' ) ) : ?>
					<nav class="social-navigation" role="navigation" aria-label="<?php esc_attr_e( 'Footer Social Links Menu', 'twentyseventeen' ); ?>">
						<?php
							wp_nav_menu( array(
								'theme_location' => 'social',
								'menu_class'     => 'social-links-menu',
								'depth'          => 1,
								'link_before'    => '<span class="screen-reader-text">',
								'link_after'     => '</span>' . twentyseventeen_get_svg( array( 'icon' => 'chain' ) ),
							) );
						?>
					</nav><!-- .social-navigation -->
				<?php endif;

				get_template_part( 'template-parts/footer/site', 'info' );
				?>
			</div><!-- .wrap -->
		</footer><!-- #colophon -->
	</div><!-- .site-content-contain -->
</div><!-- #page -->
<?php wp_footer(); ?>

</body>
</html>
Are you able to spot what I need to remove and replace with basic
<a href="www.url.url">Made by me</a> and such?

It's not an option to tweak this in the customize settings on the Dashboard

Jolly
jollyhumper is online now   Reply With Quote