Where is Number of Posts Set?

That looks like a http://para.llel.us/support/ theme. You might start there for docs—for instance, they probably have a custom ‘Theme Options’ page in the admin. Short of that, and presuming you’re ok with setting it in code (which may negate any future settings in the admin), you’ll first need to find out where $blog_query is being … Read more

Is there a PressThis that doesn’t hotlink?

PressThis bookmarklet does upload images to the wp uploads folder that you add to the article. Basically in the PressThis window go to the ‘Add’ menu and click on ‘Insert an Image’ icon. It will populate thumbnails of images found on the web page you are on. Click on the image you want to include … Read more

Add excerpt and post thumbnail to Buddypress blog directory page [closed]

I don’t have a complete answer for you. But I can point out that you should use the filter hook provided in the function bp_blog_latest_post() So something like: add_filter(‘bp_get_blog_latest_post’, ‘your_function’, 1); function your_function( ) { global $blogs_template; $str = // build your string to include excerpt and thumbnail return $str; } I don’t recall if … Read more

get author in blog posts?

This will be somewhat dependent on where your single post view is stored, but you’d be looking to add something to the effect of: <?php echo __(‘Written by’, ‘text_domain’) .’ <a href=”‘. get_author_posts_url(get_the_author_meta(‘ID’)) .'” rel=”author” class=”fn”>’. get_the_author() .'</a>’;

How could I change my Permalink from blog to custom structure? [closed]

You don’t do that with your permalinks. You can do what you want in WordPress Settings. Go to your WordPress dashboard, 2. Click “Settings”, 3. Click General. 4. In the “Site Address (URL)” Box remove the “blog” part like this –> “http://site.myurl.com/ NOTE: DON’T CHANGE THE WORDPRESS ADDRESS URL!!! Only change the Site Address Here … Read more