Quantcast
Channel: bbPress.org » All Posts
Viewing all articles
Browse latest Browse all 3666

Reply To: Register custom view with extra_fields

$
0
0

thanks for posting your solution.

you could do

add_action('bbp_theme_before_topic_title', 'show_true_title');
function show_true_title() { 
$topic_id = bbp_get_topic_id();
  $true_title = '<li class="specstanza-title"><a href="' . get_permalink() . '">' . get_post_meta( $topic_id, 'bbp_extra_field1', true); '</a></li>';
echo $true_title ;

and then in css do

li.specstanza-title {
color: blue;
}

or

.specstanza-title {
color: blue;
}

or

.specstanza-title li {
color: blue;
}

one of those should let you style the title


Viewing all articles
Browse latest Browse all 3666

Trending Articles