wordpress echo the page title
<?php echo get_the_title(post->$ID); ?>
wordpress echo the page title
<?php echo get_the_title(post->$ID); ?>
how to add title to wordpress php
// For website name in <title> tag
<?php wp_title(); ?>
// For the Post title within the loop
<?php the_title(); ?>
how to change widget title tags in wordpress
//change sidebar parameters in child theme//
add_filter('dynamic_sidebar_params', 'twentytwentychild_edit_widget_func');
function twentytwentychild_edit_widget_func($params) {
$params[0]['before_title'] = '<h4 class="widget-title subheading heading-size-3">' ;
$params[0]['after_title'] = '</h4>' ;
return $params;
}
how to change title tag of widget in wordpress
function my_custom_widget_title_tag( $params ) {
$params[0]['before_title'] = '<h4 class="widget-title widgettitle">' ;
$params[0]['after_title'] = '</h4>' ;
return $params;
}
add_filter( 'dynamic_sidebar_params' , 'my_custom_widget_title_tag' );
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us