Answers for "wp the_title()"

PHP
1

wordpress echo the page title

<?php echo get_the_title(post->$ID); ?>
Posted by: Guest on November-30-2020
0

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' );
Posted by: Guest on August-29-2021

Browse Popular Code Answers by Language