¿Estás buscando una manera de mostrar los comentarios de tus posts y páginas en el activity stream? Si bien es probable que haya un plugin para esto, hemos creado un fragmento de código rápido que se puede utilizar para añadir BuddyPress página y publicar comentarios en el flujo de actividad para mostrar nuevos comentarios.
Instrucciones:
Todo lo que tienes que hacer es añadir este código al archivo bp-custom.php de tu tema:
function push_comments_to_activity() { return array( 'page', 'post' ); } add_filter( 'bp_blogs_record_comment_post_types', 'push_comments_to_activity' );
Nota: Si es la primera vez que añade fragmentos de código en WordPress, consulte nuestra guía sobre cómo copiar / pegar correctamente fragmentos de código en WordPress, para no romper accidentalmente su sitio.
Si te ha gustado este fragmento de código, por favor considere revisar nuestros otros artículos en el sitio como: 12 mejores plugins de WordPress para bloggers y cómo crear un formulario de envío de post invitado en WordPress.
how will i make the activity post feed fit with the page whenever a user post image or video am using buddyboss platform with buddyboss theme
I have a buddypress with a theme(youzify), I want to display activitys posts randomly on home page, I want posts to be displayed randomly, not in chronological order
anyone knows any code or method for that
Hi,
Thanks for this helpful little snippet. I am using DCO attachment plugin which allows users to attach images in the comments. With your snippet, I can see the post comment in the activity stream but not the image attached to it. Is it possible to import that images as well?
Would really appreciate any guidance regarding this.
Kind regards
Aniket.
A tip is to use the Code Snippets plugin to add such PHP codes for testing.
Where is the theme’s bp-custom.php?