Search Results for 'code'
-
Search Results
-
On the post page, it says
Allowed markup: BBcode a blockquote code em strong ul ol li img font strike center u hr cite.
You can also put code in between backtick characters.How can I remove this text? I checked bb-post.php but couldn’t figure it out.
Thanks in advance!
Topic: Javascript menu
Topic: Login Problem
Hi Experts,
I need single signin plugin for intergration with bbpress. i done my website using codeignitor , i installed bbpress seprately. i need single signon plugin with other than wordpress.
I find most of saying for cookie and HTTP authentication problem
Please help find out my problem.
Some time it logged in partially. But i cant able to add new topic or reply the forum.
i call this code outside of my site.
$user = bb_login($useremail,$useremail,”);
bb_safe_redirect( “/gbbpress/” );
but it logged and i cant able reply or add new topic.
Thank
web
Hi, I’m trying to list topics from the forum in a WP post. I’m wanting to just show the topics that have the same tags as the particular post that is being viewed.
This is basically a display relevant posts. How can this be done? I’ve tried a bunch of PHP, but I’m not having luck navigating the codex between the two databases. I’ve mucked around alot, but I can’t get beyond the basic display the last 10 posts functionality.
Here’s where I’m at: HELP?
<?php
global $wpdb;
$query=”SELECT * FROM bb_topics WHERE topic_status=0 ORDER BY topic_time DESC LIMIT 10″;
$results=$wpdb->get_results($query);
foreach ($results as $result) {echo “
- topic_id.”‘>”.$result->topic_title.”
“;}
?>
Thanks a lot!