Burke Ingraffia
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Editor role cannot embed codeUsed Unfiltered MU plugin
Forum: Fixing WordPress
In reply to: Editors Not Allowed to Use Unfiltered HTMLUsed the Unfiltered Mu plugin
Does anyone know of a way to allow editors to use the “Broadcast this post, Select blogs where you want to copy this post” selection in the dashboard update section?
Currently only admins have these role permissions.
Forum: Requests and Feedback
In reply to: What Should 2011 Hold for WordPress?I would like to see more features for multisite installations, including:
1 Multisite query_posts and permalink shortcodes in between sites (without having to use switch_to_blog)
2. Multisite comments all in one place
I would also like the code to be able to see where embeds and theme files are not XHTML valid and either instruct an admin how to change it to being valid or doing it automatically.
I really do love WordPress, and I think it has done more for the economy (and jobs!) than anything the government has tried to do. Thank all of you who work on the core.
I am having the same problem.
Forum: Networking WordPress
In reply to: Trailing slash needed to find subdirectoryI did a complete reinstall of wp total cache and determined that it was the “Object Cache” function. When I disabled it I no longer had this issue.
Forum: Networking WordPress
In reply to: Trailing slash needed to find subdirectoryIt is indeed an issue with wp total cache. All I had to do was deactivate it from the main site and
sitename.com/word
took me to the sub site
as desired
WP total cache was left active on the sub sites.
Forum: Networking WordPress
In reply to: Trailing slash needed to find subdirectoryLots of redirects. I am using wp total cache too.
Here is the standard stuff I have:
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]# uploaded files
RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]There are some other rewrites, but I am pretty sure they are not making this happen
Forum: Networking WordPress
In reply to: How do you retrieve the admin id of a particular multisite blog?David,
This solved my first question perfectly:
<?php
$thisblog = $current_blog->blog_id;$user_id_from_email = get_user_id_from_string( get_blog_option($thisblog, ‘admin_email’));
echo ‘Admin ID is ‘. $user_id_from_email;
?>
But I still would like to know from the above reply:
Is there such a thing like
<?php bloginfo(‘custom_blog_meta’); ?>
that can be created as a function?
Forum: Networking WordPress
In reply to: How do you retrieve the admin id of a particular multisite blog?Thanks Andrea and David
Both of your comments have been helpful.
I know about this:
<?php bloginfo(‘name’); ?> AND <?php bloginfo(‘description’); ?>
But is there such a thing like
<?php bloginfo(‘custom_blog_meta’); ?>
that can be created as a function?
Forum: Networking WordPress
In reply to: How do you retrieve the admin id of a particular multisite blog?David
But if there is only one Super Admin, is there a way to write:
If not Admin (id=1) then echo ‘etc, etc’
or maybe if Admin id != 1 then echo ‘etc, etc’
******************************
The other thought is to not attach the meta to the admin, but to the blog itself. Do you know of a way to add another custom field like blog name or blog description to the blog itself?
Thanks for your help. Truly.
Forum: Networking WordPress
In reply to: How do you retrieve the admin id of a particular multisite blog?David
Thanks!! – I will get back to you on this. Initially the desired user ID is 4 and this code is displaying 3. Maybe I am doing it wrong. Let me play with it a little.
Burke
Forum: Plugins
In reply to: Verve Meta Boxes Date FormatBeautiful! Can I just say how much I love the WordPress community!!!
I’m going to the WordCamp in Birmingham, AL next month. I hope I can do my part to contribute.
This is very helpful – thank you!
Forum: Networking WordPress
In reply to: Posting a Category from One Site to AnotherAndrea
I think you are right. The next step, though is to figure out:
1. How to change the permalinks of the posts being queried to stay within the secondary blog,
and
2. How get content to appear on the URL’s that the new permalinks point to.
Maybe still the best move is to just put extra permissions-based content on the primary blog.