Search Results for 'code'
-
Search Results
-
I use aggrss to do syndication of my own website’s RSS feeds to the front page (OncTalk) and I want to be able to do the same thing on my bbPress theme (which is nearly identically to my WordPress theme). I’ve setup integration between the two theme systems, and I know it works becuase all of my WordPress Conditional tags and things I’m using in my bbPress theme are working, but when I put in aggrss, I get this error:
Fatal error: Call to undefined function: get() in /usr/home/josh/domains/onctalk.com/public_html/wp-content/plugins/aggrss.php on line 127
When looking up the code on that, I didn’t seen anything blatantly obvious that would cuase a screw up, but im still a beginner at this.
This is the code around line 127 from aggrss.php:
(From line 123-131)
function aggrss($rssurl,$striptags=false,$num=0) {
global $lastRSS;
$lastRSS->CDATA= ($striptags) ? “strip” : “content” ;
$lastRSS->items_limit=$num;
if ($aggr = $lastRSS->Get($rssurl))
return $aggr;
else
return 0;
}
Full view of the code can be found here.
Any help in getting this fixed/solved would be much appreciated.
Topic: Template Tags
I would like/want to know about all the various template tags there are. For example, I wanted to change the way authors are presented next to their post, but found it impossible without changing core files (and those fairly confusing anyway). It would be nice if there were more template tags like there are in wordpress, so that I could call
the_author()
,the_author_title()
,the_author_website()
,the_author_profile()
(or some variation with parameter-passed requested details). I’d like something, in other words, that was simple and straightforward to use, where looking over code you could immediately see the function. Maybe it’s implemented but I couldn’t see it?If they exist, then at least a list of them would be nice.
More template tags would be great.
Hi, this is a newbie to bbPress. Thanks for the great work.
Just want to ask before deploying the code into a semi-production environment.
It’s great to hear that deleted posts can be undeleted.
But, how am I going to clean up posts that I’m sure I no longer need anymore?
I pay for web hosting and don’t have a very large database.
Thanks a lot. Take care.
–acefinale5
Topic: Search no longer finds users
When I upgraded from .73 to .80, the search stopped finding users. In the templates folder, search.php, this code exists:
<?php if ( $users ) : ?>
<h2><?php _e('Users')?></h2>
<ol>
<?php foreach ( $users as $user ) : ?>which makes me THINK it should display users, and it used to display users, but it doesn’t any more. There were quite a few changes in that file between versions. Does anyone else have this problem? Try searching your forum for an exact username and see if you find any users. It also used to match part of a username, so searching for “river” would return “riverside” and “riverfront” if those were valid users.
Anyone?