How to remove Powered by Paяabola & WordPress.

Problem:-

I love Parabola wordpress theme but I don’t know how to remove “Powered By: WordPress” from footer of parabola theme.

Solution:-

We cann’t delete directly powered by parabola or wordpress from parabola theme. We need to change in parabola theme file as described following.

Step 1:

Open theme-functions.php from themes folder (\wp-content\themes\parabola\includes)

Step 2:

Find function parabola_site_info it looks like following code

[sociallocker]

/**
 * Site info
 */
function parabola_site_info() {
	$parabolas = parabola_get_theme_options();
	foreach ($parabolas as $key => $value) { ${"$key"} = $value ; }	?>
	<div style="text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:11px;margin:0 auto;">
	<?php 
	
	_e('Powered by','parabola')?> <a target="_blank" href="<?php echo 'http://www.cryoutcreations.eu';?>" title="<?php echo 'Parabola Theme by '.
			'Cryout Creations';?>"><?php echo 'Pa&#1103;abola' ?></a> &amp; <a target="_blank" href="<?php echo esc_url('http://wordpress.org/' ); ?>"
			title="<?php esc_attr_e('Semantic Personal Publishing Platform', 'parabola'); ?>"> <?php printf(' %s.', 'WordPress' ); ?>
		</a>
	</div><!-- #site-info -->
	
	<?php
	
} // parabola_site_info()

and replace this function by these lines

/**
 * Site info
 */
function parabola_site_info() {
	$parabolas = parabola_get_theme_options();
	foreach ($parabolas as $key => $value) { ${"$key"} = $value ; }	?>
	<?php
	
} // parabola_site_info()

[/sociallocker]

Leave a comment

Your email address will not be published. Required fields are marked *