dki
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Replacement for post_row_actions?when searching in wp core it appears in /wp-admin/includes/class-wp-posts-list-table.php:557
557: $actions = apply_filters( is_post_type_hierarchical( $post->post_type ) ? 'page_row_actions' : 'post_row_actions', $actions, $post ); 558: echo $this->row_actions( $actions );When going further… row_actions method is then located /wp-admin/includes/class-wp-list-table.php:325 which has following…
/**
* Generate row actions div
*
* @since 3.1.0
* @access protected
*
* @param array $actions The list of actions
* @param bool $always_visible Whether the actions should be always visible
* @return string
*/
function row_actions( $actions, $always_visible = false ) {
$action_count = count( $actions );
$i = 0;if ( !$action_count )
return ”;$out = ‘<div class=”‘ . ( $always_visible ? ‘row-actions-visible’ : ‘row-actions’ ) . ‘”>’;
foreach ( $actions as $action => $link ) {
++$i;
( $i == $action_count ) ? $sep = ” : $sep = ‘ | ‘;
$out .= “<span class=’$action’>$link$sep</span>”;
}
$out .= ‘</div>’;return $out;
}as it states… @since 3.1.0 isnt so long time ago… would be weird if they used some methods only in one or two versions and then removed these again.
But when looking in http://adambrown.info/p/wp_hooks/version/3.3
neither post_row_action nor page_row_action is there. Tho media, user, tag and taxonomy still remain…anyhow… that is what we can call bad info..
Tho you should still be able to use both post and page row_actions since they still appear in wp-core. till this stops working, THEN its deprecated 🙂Forum: Fixing WordPress
In reply to: Why? I can't acces my wp admin page?restore permalinks and try again.
for some reason i get a feeling its something with perms / .htacessForum: Fixing WordPress
In reply to: Metaboxes are emptyanyone ?
Forum: Plugins
In reply to: [Plugin: more-fields] More Fields not working in 3.1, on one specific siteSame here…. none of the plugins are working
sigh, good plugin but too bad the developers are not as good 🙁
not working at all, messing up encodings on site and so on