Alan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How does one change the default destination link urlthis is my theme header html code
Forum: Fixing WordPress
In reply to: How does one change the default destination link url<?php
/**
* Displays the header section of the theme.
*
*/
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head><?php
/**
* travelify_meta hook
*/
do_action( ‘travelify_meta’ );/**
* travelify_links hook
*
* HOOKED_FUNCTION_NAME PRIORITY
*
* travelify_add_links 10
* travelify_favicon 15
* travelify_webpageicon 20
*
*/
do_action( ‘travelify_links’ );/**
* This hook is important for WordPress plugins and other many things
*/
wp_head();
?></head>
<body <?php body_class(); ?>>
<?php
/**
* travelify_before hook
*/
do_action( ‘travelify_before’ );
?><div class=”wrapper”>
<?php
/**
* travelify_before_header hook
*/
do_action( ‘travelify_before_header’ );
?>
<header id=”branding” >
<?php
/**
* travelify_header hook
*
* HOOKED_FUNCTION_NAME PRIORITY
*
* travelify_headerdetails 10
*/
do_action( ‘travelify_header’ );
?>
</header>
<?php
/**
* travelify_after_header hook
*/
do_action( ‘travelify_after_header’ );
?><?php
/**
* travelify_before_main hook
*/
do_action( ‘travelify_before_main’ );
?>
<div id=”main” class=”container clearfix”>Forum: Fixing WordPress
In reply to: How does one change the default destination link urlI cannot find href attribute in my theme header php